diff --git a/vendor/tree-sitter-zig/LICENSE b/vendor/tree-sitter-zig/LICENSE new file mode 100644 index 000000000..955bef653 --- /dev/null +++ b/vendor/tree-sitter-zig/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 maxxnino + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/tree-sitter-zig/grammar.js b/vendor/tree-sitter-zig/grammar.js index 44bfbda63..16a49324e 100644 --- a/vendor/tree-sitter-zig/grammar.js +++ b/vendor/tree-sitter-zig/grammar.js @@ -118,8 +118,7 @@ const AMPERSAND = "&", dec_int = seq(dec, repeat(dec_)), hex_int = seq(hex, repeat(hex_)), unescaped_string_fragment = token.immediate(prec(1, /[^"\\\{\}]+/)), - unescaped_char_fragment = token.immediate(prec(1, /[^'\\]/)), - line_string = token(seq("\\\\", /[^\n]*/)); + unescaped_char_fragment = token.immediate(prec(1, /[^'\\]/)); module.exports = grammar({ name: "zig", @@ -843,9 +842,9 @@ module.exports = grammar({ '"' ), - LINESTRING: (_) => repeat1(line_string), + LINESTRING: (_) => seq("\\\\", /[^\n]*/), - _STRINGLITERAL: ($) => choice($.STRINGLITERALSINGLE, $.LINESTRING), + _STRINGLITERAL: ($) => choice($.STRINGLITERALSINGLE, repeat1($.LINESTRING)), Variable: ($) => field("variable", $.IDENTIFIER), diff --git a/vendor/tree-sitter-zig/src/grammar.json b/vendor/tree-sitter-zig/src/grammar.json index 208aada3d..466857ff5 100644 --- a/vendor/tree-sitter-zig/src/grammar.json +++ b/vendor/tree-sitter-zig/src/grammar.json @@ -5288,23 +5288,17 @@ ] }, "LINESTRING": { - "type": "REPEAT1", - "content": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\\\" - }, - { - "type": "PATTERN", - "value": "[^\\n]*" - } - ] + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\\\" + }, + { + "type": "PATTERN", + "value": "[^\\n]*" } - } + ] }, "_STRINGLITERAL": { "type": "CHOICE", @@ -5314,8 +5308,11 @@ "name": "STRINGLITERALSINGLE" }, { - "type": "SYMBOL", - "name": "LINESTRING" + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "LINESTRING" + } } ] }, diff --git a/vendor/tree-sitter-zig/src/node-types.json b/vendor/tree-sitter-zig/src/node-types.json index 87fd5e263..dbd2ace8e 100644 --- a/vendor/tree-sitter-zig/src/node-types.json +++ b/vendor/tree-sitter-zig/src/node-types.json @@ -3321,6 +3321,10 @@ "type": "[", "named": false }, + { + "type": "\\\\", + "named": false + }, { "type": "]", "named": false diff --git a/vendor/tree-sitter-zig/src/parser.c b/vendor/tree-sitter-zig/src/parser.c index e7e98aebb..5a01d5575 100644 --- a/vendor/tree-sitter-zig/src/parser.c +++ b/vendor/tree-sitter-zig/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 2402 -#define LARGE_STATE_COUNT 840 -#define SYMBOL_COUNT 249 +#define STATE_COUNT 2414 +#define LARGE_STATE_COUNT 841 +#define SYMBOL_COUNT 250 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 139 +#define TOKEN_COUNT 140 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 12 #define MAX_ALIAS_SEQUENCE_LENGTH 9 @@ -160,119 +160,120 @@ enum { anon_sym_DQUOTE = 133, aux_sym_STRINGLITERALSINGLE_token1 = 134, aux_sym_STRINGLITERALSINGLE_token2 = 135, - aux_sym_LINESTRING_token1 = 136, - aux_sym_IDENTIFIER_token1 = 137, - anon_sym_AT = 138, - sym_source_file = 139, - aux_sym__ContainerMembers = 140, - sym__ContainerDeclarations = 141, - sym_TestDecl = 142, - sym_TopLevelComptime = 143, - sym_TopLevelDecl = 144, - sym_FnProto = 145, - sym_VarDecl = 146, - sym_ContainerField = 147, - sym_Statement = 148, - sym_IfStatement = 149, - sym__ElseStatementTail = 150, - sym_LabeledStatement = 151, - sym_LoopStatement = 152, - sym_ForStatement = 153, - sym_WhileStatement = 154, - sym_BlockExprStatement = 155, - sym_BlockExpr = 156, - sym_AssignExpr = 157, - sym__Expr = 158, - sym_BinaryExpr = 159, - sym_UnaryExpr = 160, - sym__PrimaryExpr = 161, - sym_IfExpr = 162, - sym__ElseExprTail = 163, - sym_Block = 164, - sym_LoopExpr = 165, - sym_ForExpr = 166, - sym_WhileExpr = 167, - sym__CurlySuffixExpr = 168, - sym_InitList = 169, - sym__TypeExpr = 170, - sym_ErrorUnionExpr = 171, - sym_SuffixExpr = 172, - sym_FieldOrFnCall = 173, - sym__PrimaryTypeExpr = 174, - sym_ContainerDecl = 175, - sym_ErrorSetDecl = 176, - sym_GroupedExpr = 177, - sym_IfTypeExpr = 178, - sym__ElseTypeExprTail = 179, - sym_LabeledTypeExpr = 180, - sym_LoopTypeExpr = 181, - sym_ForTypeExpr = 182, - sym_WhileTypeExpr = 183, - sym_SwitchExpr = 184, - sym_AsmExpr = 185, - sym_AsmOutput = 186, - sym_AsmOutputItem = 187, - sym_AsmInput = 188, - sym_AsmInputItem = 189, - sym_AsmClobbers = 190, - sym_BreakLabel = 191, - sym_BlockLabel = 192, - sym_FieldInit = 193, - sym_WhileContinueExpr = 194, - sym_LinkSection = 195, - sym_CallConv = 196, - sym_ParamDecl = 197, - sym_ParamType = 198, - sym_IfPrefix = 199, - sym_WhilePrefix = 200, - sym_ForPrefix = 201, - sym_Payload = 202, - sym_PtrPayload = 203, - sym_PtrIndexPayload = 204, - sym_SwitchProng = 205, - sym_SwitchCase = 206, - sym_SwitchItem = 207, - sym_AssignOp = 208, - sym_CompareOp = 209, - sym_BitwiseOp = 210, - sym_BitShiftOp = 211, - sym_AdditionOp = 212, - sym_MultiplyOp = 213, - sym_PrefixOp = 214, - sym_PrefixTypeOp = 215, - sym_SuffixOp = 216, - sym_FnCallArguments = 217, - sym_SliceTypeStart = 218, - sym_PtrTypeStart = 219, - sym_ArrayTypeStart = 220, - sym__ContainerDeclAuto = 221, - sym_ContainerDeclType = 222, - sym_ByteAlign = 223, - sym_ParamDeclList = 224, - sym_CHAR_LITERAL = 225, - sym_FLOAT = 226, - sym_INTEGER = 227, - sym_STRINGLITERALSINGLE = 228, - sym_LINESTRING = 229, - sym__STRINGLITERAL = 230, - sym_IDENTIFIER = 231, - sym_BUILTINIDENTIFIER = 232, - aux_sym_Block_repeat1 = 233, - aux_sym_InitList_repeat1 = 234, - aux_sym_InitList_repeat2 = 235, - aux_sym__TypeExpr_repeat1 = 236, - aux_sym_SuffixExpr_repeat1 = 237, - aux_sym_ErrorSetDecl_repeat1 = 238, - aux_sym_SwitchExpr_repeat1 = 239, - aux_sym_AsmOutput_repeat1 = 240, - aux_sym_AsmInput_repeat1 = 241, - aux_sym_AsmClobbers_repeat1 = 242, - aux_sym_SwitchCase_repeat1 = 243, - aux_sym_PrefixTypeOp_repeat1 = 244, - aux_sym_PrefixTypeOp_repeat2 = 245, - aux_sym_ParamDeclList_repeat1 = 246, - aux_sym_STRINGLITERALSINGLE_repeat1 = 247, - aux_sym_LINESTRING_repeat1 = 248, + anon_sym_BSLASH_BSLASH = 136, + aux_sym_LINESTRING_token1 = 137, + aux_sym_IDENTIFIER_token1 = 138, + anon_sym_AT = 139, + sym_source_file = 140, + aux_sym__ContainerMembers = 141, + sym__ContainerDeclarations = 142, + sym_TestDecl = 143, + sym_TopLevelComptime = 144, + sym_TopLevelDecl = 145, + sym_FnProto = 146, + sym_VarDecl = 147, + sym_ContainerField = 148, + sym_Statement = 149, + sym_IfStatement = 150, + sym__ElseStatementTail = 151, + sym_LabeledStatement = 152, + sym_LoopStatement = 153, + sym_ForStatement = 154, + sym_WhileStatement = 155, + sym_BlockExprStatement = 156, + sym_BlockExpr = 157, + sym_AssignExpr = 158, + sym__Expr = 159, + sym_BinaryExpr = 160, + sym_UnaryExpr = 161, + sym__PrimaryExpr = 162, + sym_IfExpr = 163, + sym__ElseExprTail = 164, + sym_Block = 165, + sym_LoopExpr = 166, + sym_ForExpr = 167, + sym_WhileExpr = 168, + sym__CurlySuffixExpr = 169, + sym_InitList = 170, + sym__TypeExpr = 171, + sym_ErrorUnionExpr = 172, + sym_SuffixExpr = 173, + sym_FieldOrFnCall = 174, + sym__PrimaryTypeExpr = 175, + sym_ContainerDecl = 176, + sym_ErrorSetDecl = 177, + sym_GroupedExpr = 178, + sym_IfTypeExpr = 179, + sym__ElseTypeExprTail = 180, + sym_LabeledTypeExpr = 181, + sym_LoopTypeExpr = 182, + sym_ForTypeExpr = 183, + sym_WhileTypeExpr = 184, + sym_SwitchExpr = 185, + sym_AsmExpr = 186, + sym_AsmOutput = 187, + sym_AsmOutputItem = 188, + sym_AsmInput = 189, + sym_AsmInputItem = 190, + sym_AsmClobbers = 191, + sym_BreakLabel = 192, + sym_BlockLabel = 193, + sym_FieldInit = 194, + sym_WhileContinueExpr = 195, + sym_LinkSection = 196, + sym_CallConv = 197, + sym_ParamDecl = 198, + sym_ParamType = 199, + sym_IfPrefix = 200, + sym_WhilePrefix = 201, + sym_ForPrefix = 202, + sym_Payload = 203, + sym_PtrPayload = 204, + sym_PtrIndexPayload = 205, + sym_SwitchProng = 206, + sym_SwitchCase = 207, + sym_SwitchItem = 208, + sym_AssignOp = 209, + sym_CompareOp = 210, + sym_BitwiseOp = 211, + sym_BitShiftOp = 212, + sym_AdditionOp = 213, + sym_MultiplyOp = 214, + sym_PrefixOp = 215, + sym_PrefixTypeOp = 216, + sym_SuffixOp = 217, + sym_FnCallArguments = 218, + sym_SliceTypeStart = 219, + sym_PtrTypeStart = 220, + sym_ArrayTypeStart = 221, + sym__ContainerDeclAuto = 222, + sym_ContainerDeclType = 223, + sym_ByteAlign = 224, + sym_ParamDeclList = 225, + sym_CHAR_LITERAL = 226, + sym_FLOAT = 227, + sym_INTEGER = 228, + sym_STRINGLITERALSINGLE = 229, + sym_LINESTRING = 230, + sym__STRINGLITERAL = 231, + sym_IDENTIFIER = 232, + sym_BUILTINIDENTIFIER = 233, + aux_sym_Block_repeat1 = 234, + aux_sym_InitList_repeat1 = 235, + aux_sym_InitList_repeat2 = 236, + aux_sym__TypeExpr_repeat1 = 237, + aux_sym_SuffixExpr_repeat1 = 238, + aux_sym_ErrorSetDecl_repeat1 = 239, + aux_sym_SwitchExpr_repeat1 = 240, + aux_sym_AsmOutput_repeat1 = 241, + aux_sym_AsmInput_repeat1 = 242, + aux_sym_AsmClobbers_repeat1 = 243, + aux_sym_SwitchCase_repeat1 = 244, + aux_sym_PrefixTypeOp_repeat1 = 245, + aux_sym_PrefixTypeOp_repeat2 = 246, + aux_sym_ParamDeclList_repeat1 = 247, + aux_sym_STRINGLITERALSINGLE_repeat1 = 248, + aux_sym__STRINGLITERAL_repeat1 = 249, }; static const char * const ts_symbol_names[] = { @@ -412,6 +413,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_DQUOTE] = "\"", [aux_sym_STRINGLITERALSINGLE_token1] = "STRINGLITERALSINGLE_token1", [aux_sym_STRINGLITERALSINGLE_token2] = "STRINGLITERALSINGLE_token2", + [anon_sym_BSLASH_BSLASH] = "\\\\", [aux_sym_LINESTRING_token1] = "LINESTRING_token1", [aux_sym_IDENTIFIER_token1] = "IDENTIFIER_token1", [anon_sym_AT] = "@", @@ -524,7 +526,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_PrefixTypeOp_repeat2] = "PrefixTypeOp_repeat2", [aux_sym_ParamDeclList_repeat1] = "ParamDeclList_repeat1", [aux_sym_STRINGLITERALSINGLE_repeat1] = "STRINGLITERALSINGLE_repeat1", - [aux_sym_LINESTRING_repeat1] = "LINESTRING_repeat1", + [aux_sym__STRINGLITERAL_repeat1] = "_STRINGLITERAL_repeat1", }; static const TSSymbol ts_symbol_map[] = { @@ -664,6 +666,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DQUOTE] = anon_sym_DQUOTE, [aux_sym_STRINGLITERALSINGLE_token1] = aux_sym_STRINGLITERALSINGLE_token1, [aux_sym_STRINGLITERALSINGLE_token2] = aux_sym_STRINGLITERALSINGLE_token2, + [anon_sym_BSLASH_BSLASH] = anon_sym_BSLASH_BSLASH, [aux_sym_LINESTRING_token1] = aux_sym_LINESTRING_token1, [aux_sym_IDENTIFIER_token1] = aux_sym_IDENTIFIER_token1, [anon_sym_AT] = anon_sym_AT, @@ -776,7 +779,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_PrefixTypeOp_repeat2] = aux_sym_PrefixTypeOp_repeat2, [aux_sym_ParamDeclList_repeat1] = aux_sym_ParamDeclList_repeat1, [aux_sym_STRINGLITERALSINGLE_repeat1] = aux_sym_STRINGLITERALSINGLE_repeat1, - [aux_sym_LINESTRING_repeat1] = aux_sym_LINESTRING_repeat1, + [aux_sym__STRINGLITERAL_repeat1] = aux_sym__STRINGLITERAL_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -1324,6 +1327,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [anon_sym_BSLASH_BSLASH] = { + .visible = true, + .named = false, + }, [aux_sym_LINESTRING_token1] = { .visible = false, .named = false, @@ -1772,7 +1779,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_LINESTRING_repeat1] = { + [aux_sym__STRINGLITERAL_repeat1] = { .visible = false, .named = false, }, @@ -1970,28 +1977,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(525); - if (lookahead == 'b') ADVANCE(600); + if (lookahead == 'a') ADVANCE(528); + if (lookahead == 'b') ADVANCE(603); if (lookahead == 'c') ADVANCE(343); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'l') ADVANCE(498); - if (lookahead == 'n') ADVANCE(602); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(397); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(569); - if (lookahead == 'v') ADVANCE(405); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(530); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'n') ADVANCE(605); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(400); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(469); + if (lookahead == 'u') ADVANCE(572); + if (lookahead == 'v') ADVANCE(408); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -2002,7 +2009,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(162) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= '_') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(146); @@ -2034,26 +2041,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(392); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -2064,7 +2071,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(2) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= '_') || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 3: if (lookahead == '!') ADVANCE(194); @@ -2084,26 +2091,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(201); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(528); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(394); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -2115,7 +2122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 4: if (lookahead == '!') ADVANCE(194); @@ -2135,26 +2142,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(201); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(564); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(394); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -2166,7 +2173,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 5: if (lookahead == '!') ADVANCE(194); @@ -2187,25 +2194,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(41); if (lookahead == '>') ADVANCE(288); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(392); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '~') ADVANCE(333); @@ -2216,7 +2223,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 6: if (lookahead == '!') ADVANCE(194); @@ -2237,25 +2244,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(41); if (lookahead == '>') ADVANCE(288); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(392); - if (lookahead == 'e') ADVANCE(530); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '~') ADVANCE(333); @@ -2266,7 +2273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 7: if (lookahead == '!') ADVANCE(194); @@ -2388,25 +2395,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(199); if (lookahead == '=') ADVANCE(43); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(394); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(584); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(397); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(258); if (lookahead == '}') ADVANCE(219); @@ -2418,7 +2425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 12: if (lookahead == '!') ADVANCE(193); @@ -2434,25 +2441,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(186); if (lookahead == '=') ADVANCE(200); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(393); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(564); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(584); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(396); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(258); if (lookahead == '}') ADVANCE(219); @@ -2464,7 +2471,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 13: if (lookahead == '!') ADVANCE(193); @@ -2478,25 +2485,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(393); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(528); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(584); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(396); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '}') ADVANCE(219); if (lookahead == '~') ADVANCE(333); @@ -2507,7 +2514,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 14: if (lookahead == '!') ADVANCE(193); @@ -2521,24 +2528,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(393); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(584); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(396); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '~') ADVANCE(333); if (lookahead == '\t' || @@ -2548,7 +2555,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 15: if (lookahead == '!') ADVANCE(193); @@ -2562,24 +2569,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(581); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(394); - if (lookahead == 'e') ADVANCE(530); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(584); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(397); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '}') ADVANCE(219); if (lookahead == '~') ADVANCE(333); @@ -2590,7 +2597,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 16: if (lookahead == '!') ADVANCE(193); @@ -2605,24 +2612,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(186); if (lookahead == '=') ADVANCE(200); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(543); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(390); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'l') ADVANCE(498); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(546); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(393); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2630,7 +2637,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 17: if (lookahead == '!') ADVANCE(193); @@ -2643,23 +2650,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(370); if (lookahead == ':') ADVANCE(199); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(582); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(585); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '|') ADVANCE(258); if (lookahead == '\t' || lookahead == '\n' || @@ -2668,7 +2675,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 18: if (lookahead == '!') ADVANCE(193); @@ -2682,24 +2689,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(186); if (lookahead == '=') ADVANCE(200); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(582); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(390); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'l') ADVANCE(498); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(585); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(393); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2707,7 +2714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 19: if (lookahead == '!') ADVANCE(193); @@ -2721,23 +2728,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(186); if (lookahead == '=') ADVANCE(200); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(582); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(390); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(585); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(393); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2745,7 +2752,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 20: if (lookahead == '"') ADVANCE(377); @@ -2757,23 +2764,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(29); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(589); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(607); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(592); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(610); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2781,7 +2788,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 21: if (lookahead == '"') ADVANCE(377); @@ -2793,24 +2800,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(370); if (lookahead == ':') ADVANCE(199); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'b') ADVANCE(601); + if (lookahead == 'a') ADVANCE(529); + if (lookahead == 'b') ADVANCE(604); if (lookahead == 'c') ADVANCE(344); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(608); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(611); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2818,7 +2825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 22: if (lookahead == '"') ADVANCE(377); @@ -2829,23 +2836,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(589); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(592); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || @@ -2854,7 +2861,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 23: if (lookahead == '"') ADVANCE(377); @@ -2865,23 +2872,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(589); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(607); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(592); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(610); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2889,7 +2896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 24: if (lookahead == '"') ADVANCE(377); @@ -2900,23 +2907,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(526); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(396); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(608); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(529); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(399); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(611); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2924,7 +2931,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 25: if (lookahead == '"') ADVANCE(377); @@ -2933,22 +2940,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(221); if (lookahead == '/') ADVANCE(31); if (lookahead == '0') ADVANCE(370); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(583); - if (lookahead == 'b') ADVANCE(601); - if (lookahead == 'c') ADVANCE(395); - if (lookahead == 'e') ADVANCE(566); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(622); - if (lookahead == 'o') ADVANCE(628); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(663); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(586); + if (lookahead == 'b') ADVANCE(604); + if (lookahead == 'c') ADVANCE(398); + if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'o') ADVANCE(631); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(666); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -2956,7 +2963,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 26: if (lookahead == '"') ADVANCE(377); @@ -2964,7 +2971,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(261); if (lookahead == '-') ADVANCE(42); if (lookahead == '/') ADVANCE(31); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '{') ADVANCE(218); if (lookahead == '\t' || lookahead == '\n' || @@ -2972,7 +2979,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(26) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 27: if (lookahead == '"') ADVANCE(377); @@ -3021,27 +3028,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 36: if (lookahead == '/') ADVANCE(31); - if (lookahead == '@') ADVANCE(717); - if (lookahead == 'c') ADVANCE(609); - if (lookahead == 'e') ADVANCE(709); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == '@') ADVANCE(720); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 37: if (lookahead == '/') ADVANCE(29); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '}') ADVANCE(219); if (lookahead == '\t' || lookahead == '\n' || @@ -3049,7 +3056,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(37) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 38: if (lookahead == ':') ADVANCE(1); @@ -3502,28 +3509,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(525); - if (lookahead == 'b') ADVANCE(600); + if (lookahead == 'a') ADVANCE(528); + if (lookahead == 'b') ADVANCE(603); if (lookahead == 'c') ADVANCE(343); - if (lookahead == 'd') ADVANCE(443); - if (lookahead == 'e') ADVANCE(527); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'l') ADVANCE(498); - if (lookahead == 'n') ADVANCE(602); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(397); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(684); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(569); - if (lookahead == 'v') ADVANCE(405); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'd') ADVANCE(446); + if (lookahead == 'e') ADVANCE(530); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'l') ADVANCE(501); + if (lookahead == 'n') ADVANCE(605); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(400); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(687); + if (lookahead == 't') ADVANCE(469); + if (lookahead == 'u') ADVANCE(572); + if (lookahead == 'v') ADVANCE(408); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -3534,7 +3541,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(162) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= '_') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('g' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 163: if (eof) ADVANCE(172); @@ -3558,26 +3565,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(202); if (lookahead == '>') ADVANCE(287); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == ']') ADVANCE(246); if (lookahead == '^') ADVANCE(294); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(392); - if (lookahead == 'e') ADVANCE(530); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(605); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(398); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(641); - if (lookahead == 'u') ADVANCE(568); - if (lookahead == 'v') ADVANCE(617); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(608); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(401); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(644); + if (lookahead == 'u') ADVANCE(571); + if (lookahead == 'v') ADVANCE(620); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(259); if (lookahead == '}') ADVANCE(219); @@ -3588,7 +3595,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(163) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= '_') || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 164: if (eof) ADVANCE(172); @@ -3610,25 +3617,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(40); if (lookahead == '>') ADVANCE(288); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'e') ADVANCE(565); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(606); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(397); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(569); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(394); + if (lookahead == 'e') ADVANCE(568); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(609); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(400); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(469); + if (lookahead == 'u') ADVANCE(572); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '}') ADVANCE(219); @@ -3640,7 +3647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 165: if (eof) ADVANCE(172); @@ -3662,25 +3669,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '=') ADVANCE(40); if (lookahead == '>') ADVANCE(288); if (lookahead == '?') ADVANCE(336); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(578); - if (lookahead == 'b') ADVANCE(600); - if (lookahead == 'c') ADVANCE(391); - if (lookahead == 'e') ADVANCE(529); - if (lookahead == 'f') ADVANCE(385); - if (lookahead == 'i') ADVANCE(483); - if (lookahead == 'n') ADVANCE(606); - if (lookahead == 'o') ADVANCE(627); - if (lookahead == 'p') ADVANCE(397); - if (lookahead == 'r') ADVANCE(444); - if (lookahead == 's') ADVANCE(685); - if (lookahead == 't') ADVANCE(466); - if (lookahead == 'u') ADVANCE(569); - if (lookahead == 'v') ADVANCE(406); - if (lookahead == 'w') ADVANCE(495); + if (lookahead == 'a') ADVANCE(581); + if (lookahead == 'b') ADVANCE(603); + if (lookahead == 'c') ADVANCE(394); + if (lookahead == 'e') ADVANCE(532); + if (lookahead == 'f') ADVANCE(388); + if (lookahead == 'i') ADVANCE(486); + if (lookahead == 'n') ADVANCE(609); + if (lookahead == 'o') ADVANCE(630); + if (lookahead == 'p') ADVANCE(400); + if (lookahead == 'r') ADVANCE(447); + if (lookahead == 's') ADVANCE(688); + if (lookahead == 't') ADVANCE(469); + if (lookahead == 'u') ADVANCE(572); + if (lookahead == 'v') ADVANCE(409); + if (lookahead == 'w') ADVANCE(498); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '}') ADVANCE(219); @@ -3692,7 +3699,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('1' <= lookahead && lookahead <= '9')) ADVANCE(371); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('d' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('d' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 166: if (eof) ADVANCE(172); @@ -3710,21 +3717,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(286); if (lookahead == '=') ADVANCE(40); if (lookahead == '>') ADVANCE(288); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(591); - if (lookahead == 'c') ADVANCE(418); - if (lookahead == 'e') ADVANCE(709); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(640); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == 'a') ADVANCE(594); + if (lookahead == 'c') ADVANCE(421); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'o') ADVANCE(643); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '}') ADVANCE(219); @@ -3734,7 +3741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(166) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 167: if (eof) ADVANCE(172); @@ -3752,21 +3759,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(286); if (lookahead == '=') ADVANCE(40); if (lookahead == '>') ADVANCE(288); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(293); - if (lookahead == 'a') ADVANCE(591); - if (lookahead == 'c') ADVANCE(418); - if (lookahead == 'e') ADVANCE(531); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(640); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == 'a') ADVANCE(594); + if (lookahead == 'c') ADVANCE(421); + if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'o') ADVANCE(643); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '{') ADVANCE(218); if (lookahead == '|') ADVANCE(260); if (lookahead == '}') ADVANCE(219); @@ -3776,7 +3783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(167) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 168: if (eof) ADVANCE(172); @@ -3788,19 +3795,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(29); if (lookahead == ':') ADVANCE(199); if (lookahead == '=') ADVANCE(200); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(544); - if (lookahead == 'c') ADVANCE(609); - if (lookahead == 'e') ADVANCE(709); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == 'a') ADVANCE(547); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '}') ADVANCE(219); if (lookahead == '\t' || lookahead == '\n' || @@ -3808,7 +3815,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(168) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 169: if (eof) ADVANCE(172); @@ -3820,19 +3827,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(29); if (lookahead == ':') ADVANCE(199); if (lookahead == '=') ADVANCE(200); - if (lookahead == '@') ADVANCE(717); + if (lookahead == '@') ADVANCE(720); if (lookahead == '[') ADVANCE(245); if (lookahead == '\\') ADVANCE(44); - if (lookahead == 'a') ADVANCE(544); - if (lookahead == 'c') ADVANCE(609); - if (lookahead == 'e') ADVANCE(531); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == 'a') ADVANCE(547); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'e') ADVANCE(534); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '}') ADVANCE(219); if (lookahead == '\t' || lookahead == '\n' || @@ -3840,7 +3847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(169) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 170: if (eof) ADVANCE(172); @@ -3849,16 +3856,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(29); if (lookahead == ':') ADVANCE(199); if (lookahead == '=') ADVANCE(200); - if (lookahead == '@') ADVANCE(717); - if (lookahead == 'c') ADVANCE(609); - if (lookahead == 'e') ADVANCE(709); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == '@') ADVANCE(720); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '}') ADVANCE(219); if (lookahead == '\t' || lookahead == '\n' || @@ -3866,21 +3873,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(170) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 171: if (eof) ADVANCE(172); if (lookahead == '/') ADVANCE(32); - if (lookahead == '@') ADVANCE(717); - if (lookahead == 'c') ADVANCE(609); - if (lookahead == 'e') ADVANCE(709); - if (lookahead == 'f') ADVANCE(567); - if (lookahead == 'i') ADVANCE(579); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'p') ADVANCE(694); - if (lookahead == 't') ADVANCE(467); - if (lookahead == 'u') ADVANCE(676); - if (lookahead == 'v') ADVANCE(407); + if (lookahead == '@') ADVANCE(720); + if (lookahead == 'c') ADVANCE(612); + if (lookahead == 'e') ADVANCE(712); + if (lookahead == 'f') ADVANCE(570); + if (lookahead == 'i') ADVANCE(582); + if (lookahead == 'n') ADVANCE(629); + if (lookahead == 'p') ADVANCE(697); + if (lookahead == 't') ADVANCE(470); + if (lookahead == 'u') ADVANCE(679); + if (lookahead == 'v') ADVANCE(410); if (lookahead == '}') ADVANCE(219); if (lookahead == '\t' || lookahead == '\n' || @@ -3888,7 +3895,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(171) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 172: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -3901,28 +3908,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 175: ACCEPT_TOKEN(anon_sym_test); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 176: ACCEPT_TOKEN(anon_sym_comptime); - if (lookahead == '_') ADVANCE(485); + if (lookahead == '_') ADVANCE(488); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 177: ACCEPT_TOKEN(anon_sym_comptime); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 178: ACCEPT_TOKEN(anon_sym_export); @@ -3932,7 +3939,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_extern); @@ -3942,7 +3949,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 182: ACCEPT_TOKEN(anon_sym_inline); @@ -3952,7 +3959,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 184: ACCEPT_TOKEN(anon_sym_noinline); @@ -3962,7 +3969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 186: ACCEPT_TOKEN(anon_sym_SEMI); @@ -3975,7 +3982,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 189: ACCEPT_TOKEN(anon_sym_usingnamespace); @@ -3985,7 +3992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 191: ACCEPT_TOKEN(anon_sym_fn); @@ -3995,7 +4002,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_BANG); @@ -4012,7 +4019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 197: ACCEPT_TOKEN(anon_sym_var); @@ -4022,7 +4029,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 199: ACCEPT_TOKEN(anon_sym_COLON); @@ -4044,35 +4051,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 204: ACCEPT_TOKEN(anon_sym_nosuspend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 205: ACCEPT_TOKEN(anon_sym_defer); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 206: ACCEPT_TOKEN(anon_sym_suspend); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 207: ACCEPT_TOKEN(anon_sym_errdefer); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 208: ACCEPT_TOKEN(anon_sym_else); @@ -4082,7 +4089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 210: ACCEPT_TOKEN(anon_sym_or); @@ -4090,11 +4097,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 211: ACCEPT_TOKEN(anon_sym_or); - if (lookahead == 'e') ADVANCE(551); + if (lookahead == 'e') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 212: ACCEPT_TOKEN(anon_sym_and); @@ -4104,35 +4111,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 214: ACCEPT_TOKEN(anon_sym_break); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 215: ACCEPT_TOKEN(anon_sym_continue); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 216: ACCEPT_TOKEN(anon_sym_resume); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 217: ACCEPT_TOKEN(anon_sym_return); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 218: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -4145,7 +4152,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 221: ACCEPT_TOKEN(anon_sym_DOT); @@ -4180,87 +4187,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 228: ACCEPT_TOKEN(anon_sym_false); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 229: ACCEPT_TOKEN(anon_sym_null); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 230: ACCEPT_TOKEN(anon_sym_anyframe); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 231: ACCEPT_TOKEN(anon_sym_true); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 232: ACCEPT_TOKEN(anon_sym_undefined); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 233: ACCEPT_TOKEN(anon_sym_unreachable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 234: ACCEPT_TOKEN(sym_BuildinTypeExpr); - if (lookahead == 'd') ADVANCE(611); - if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'd') ADVANCE(614); + if (lookahead == 'l') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 235: ACCEPT_TOKEN(sym_BuildinTypeExpr); - if (lookahead == 'l') ADVANCE(623); + if (lookahead == 'l') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 236: ACCEPT_TOKEN(sym_BuildinTypeExpr); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 237: ACCEPT_TOKEN(sym_BuildinTypeExpr); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 238: ACCEPT_TOKEN(anon_sym_packed); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 239: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -4273,14 +4280,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 242: ACCEPT_TOKEN(anon_sym_asm); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 243: ACCEPT_TOKEN(anon_sym_volatile); @@ -4290,7 +4297,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 245: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -4309,21 +4316,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 250: ACCEPT_TOKEN(anon_sym_callconv); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 251: ACCEPT_TOKEN(anon_sym_noalias); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 252: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); @@ -4333,7 +4340,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 254: ACCEPT_TOKEN(anon_sym_while); @@ -4343,7 +4350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 256: ACCEPT_TOKEN(anon_sym_for); @@ -4353,7 +4360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 258: ACCEPT_TOKEN(anon_sym_PIPE); @@ -4495,7 +4502,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 297: ACCEPT_TOKEN(anon_sym_catch); @@ -4505,7 +4512,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 299: ACCEPT_TOKEN(anon_sym_LT_LT); @@ -4655,14 +4662,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 335: ACCEPT_TOKEN(anon_sym_await); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 336: ACCEPT_TOKEN(anon_sym_QMARK); @@ -4672,7 +4679,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 338: ACCEPT_TOKEN(anon_sym_align); @@ -4682,7 +4689,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 340: ACCEPT_TOKEN(anon_sym_DOT_DOT); @@ -4695,48 +4702,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 343: ACCEPT_TOKEN(anon_sym_c); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'a') ADVANCE(536); - if (lookahead == 'o') ADVANCE(554); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'a') ADVANCE(539); + if (lookahead == 'o') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 344: ACCEPT_TOKEN(anon_sym_c); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'o') ADVANCE(555); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'o') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 345: ACCEPT_TOKEN(anon_sym_struct); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 346: ACCEPT_TOKEN(anon_sym_opaque); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 347: ACCEPT_TOKEN(anon_sym_enum); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 348: ACCEPT_TOKEN(anon_sym_union); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 349: ACCEPT_TOKEN(sym_container_doc_comment); @@ -4972,2101 +4979,2095 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(374); END_STATE(); case 384: - ACCEPT_TOKEN(aux_sym_LINESTRING_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(384); + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); END_STATE(); case 385: - ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '1') ADVANCE(386); - if (lookahead == '3') ADVANCE(387); - if (lookahead == '6') ADVANCE(388); - if (lookahead == 'a') ADVANCE(549); - if (lookahead == 'n') ADVANCE(192); - if (lookahead == 'o') ADVANCE(644); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ACCEPT_TOKEN(aux_sym_LINESTRING_token1); + if (lookahead == '/') ADVANCE(357); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(387); END_STATE(); case 386: - ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '2') ADVANCE(389); - if (lookahead == '6') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ACCEPT_TOKEN(aux_sym_LINESTRING_token1); + if (lookahead == '/') ADVANCE(385); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(386); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(387); END_STATE(); case 387: - ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '2') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ACCEPT_TOKEN(aux_sym_LINESTRING_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(387); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '4') ADVANCE(237); + if (lookahead == '1') ADVANCE(389); + if (lookahead == '3') ADVANCE(390); + if (lookahead == '6') ADVANCE(391); + if (lookahead == 'a') ADVANCE(552); + if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'o') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '8') ADVANCE(237); + if (lookahead == '2') ADVANCE(392); + if (lookahead == '6') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'a') ADVANCE(537); - if (lookahead == 'o') ADVANCE(557); + if (lookahead == '2') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'a') ADVANCE(683); - if (lookahead == 'o') ADVANCE(554); + if (lookahead == '4') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'a') ADVANCE(683); - if (lookahead == 'o') ADVANCE(556); + if (lookahead == '8') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'o') ADVANCE(554); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'a') ADVANCE(540); + if (lookahead == 'o') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'o') ADVANCE(556); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'a') ADVANCE(686); + if (lookahead == 'o') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'o') ADVANCE(557); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'a') ADVANCE(686); + if (lookahead == 'o') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == '_') ADVANCE(506); - if (lookahead == 'o') ADVANCE(555); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'o') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(423); - if (lookahead == 'u') ADVANCE(419); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'o') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(423); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'o') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(638); + if (lookahead == '_') ADVANCE(509); + if (lookahead == 'o') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(421); + if (lookahead == 'a') ADVANCE(426); + if (lookahead == 'u') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(522); + if (lookahead == 'a') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(440); + if (lookahead == 'a') ADVANCE(641); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(664); + if (lookahead == 'a') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(677); + if (lookahead == 'a') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(645); - if (lookahead == 'o') ADVANCE(504); + if (lookahead == 'a') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(645); - if (lookahead == 'o') ADVANCE(505); + if (lookahead == 'a') ADVANCE(667); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(645); + if (lookahead == 'a') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(508); + if (lookahead == 'a') ADVANCE(648); + if (lookahead == 'o') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(539); - if (lookahead == 'i') ADVANCE(598); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(706); + if (lookahead == 'a') ADVANCE(648); + if (lookahead == 'o') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(539); - if (lookahead == 'r') ADVANCE(474); + if (lookahead == 'a') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(429); + if (lookahead == 'a') ADVANCE(511); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(692); + if (lookahead == 'a') ADVANCE(542); + if (lookahead == 'i') ADVANCE(601); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 's') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(534); + if (lookahead == 'a') ADVANCE(542); + if (lookahead == 'r') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(559); + if (lookahead == 'a') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(426); + if (lookahead == 'a') ADVANCE(695); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(561); + if (lookahead == 'a') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(639); + if (lookahead == 'a') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'a') ADVANCE(683); - if (lookahead == 'o') ADVANCE(563); + if (lookahead == 'a') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'b') ADVANCE(174); + if (lookahead == 'a') ADVANCE(564); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'b') ADVANCE(541); + if (lookahead == 'a') ADVANCE(642); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'b') ADVANCE(547); + if (lookahead == 'a') ADVANCE(686); + if (lookahead == 'o') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(220); + if (lookahead == 'b') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(523); + if (lookahead == 'b') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(493); + if (lookahead == 'b') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(494); + if (lookahead == 'c') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(496); + if (lookahead == 'c') ADVANCE(526); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(413); + if (lookahead == 'c') ADVANCE(496); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(682); + if (lookahead == 'c') ADVANCE(497); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(461); + if (lookahead == 'c') ADVANCE(499); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(687); + if (lookahead == 'c') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'c') ADVANCE(621); + if (lookahead == 'c') ADVANCE(685); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(213); - if (lookahead == 'y') ADVANCE(471); + if (lookahead == 'c') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(213); - if (lookahead == 'y') ADVANCE(472); + if (lookahead == 'c') ADVANCE(690); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(213); + if (lookahead == 'c') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(237); + if (lookahead == 'd') ADVANCE(213); + if (lookahead == 'y') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(238); + if (lookahead == 'd') ADVANCE(213); + if (lookahead == 'y') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(206); + if (lookahead == 'd') ADVANCE(213); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(204); + if (lookahead == 'd') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(232); + if (lookahead == 'd') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(538); + if (lookahead == 'd') ADVANCE(206); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(463); - if (lookahead == 'i') ADVANCE(614); - if (lookahead == 'r') ADVANCE(470); + if (lookahead == 'd') ADVANCE(204); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'd') ADVANCE(482); - if (lookahead == 'o') ADVANCE(647); + if (lookahead == 'd') ADVANCE(232); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(484); + if (lookahead == 'd') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(673); + if (lookahead == 'd') ADVANCE(466); + if (lookahead == 'i') ADVANCE(617); + if (lookahead == 'r') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(237); + if (lookahead == 'd') ADVANCE(485); + if (lookahead == 'o') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(209); + if (lookahead == 'e') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(676); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(255); + if (lookahead == 'e') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(183); + if (lookahead == 'e') ADVANCE(231); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(346); + if (lookahead == 'e') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'e') ADVANCE(255); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'e') ADVANCE(183); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'e') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(230); + if (lookahead == 'e') ADVANCE(296); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(176); + if (lookahead == 'e') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(215); + if (lookahead == 'e') ADVANCE(203); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'e') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(244); + if (lookahead == 'e') ADVANCE(176); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(233); + if (lookahead == 'e') ADVANCE(215); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'e') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'e') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(487); + if (lookahead == 'e') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(436); + if (lookahead == 'e') ADVANCE(190); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'e') ADVANCE(177); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(665); - if (lookahead == 'h') ADVANCE(660); - if (lookahead == 'r') ADVANCE(698); - if (lookahead == 'y') ADVANCE(631); + if (lookahead == 'e') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(665); - if (lookahead == 'h') ADVANCE(660); + if (lookahead == 'e') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(402); + if (lookahead == 'e') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(666); + if (lookahead == 'e') ADVANCE(668); + if (lookahead == 'h') ADVANCE(663); + if (lookahead == 'r') ADVANCE(701); + if (lookahead == 'y') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'e') ADVANCE(668); + if (lookahead == 'h') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(653); - if (lookahead == 'o') ADVANCE(636); - if (lookahead == 't') ADVANCE(713); + if (lookahead == 'e') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(657); - if (lookahead == 'f') ADVANCE(653); - if (lookahead == 'o') ADVANCE(636); + if (lookahead == 'e') ADVANCE(669); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(439); + if (lookahead == 'e') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(691); + if (lookahead == 'e') ADVANCE(660); + if (lookahead == 'f') ADVANCE(656); + if (lookahead == 'o') ADVANCE(639); + if (lookahead == 't') ADVANCE(716); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(646); + if (lookahead == 'e') ADVANCE(660); + if (lookahead == 'f') ADVANCE(656); + if (lookahead == 'o') ADVANCE(639); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(656); + if (lookahead == 'e') ADVANCE(442); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(588); + if (lookahead == 'e') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'e') ADVANCE(649); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(648); + if (lookahead == 'e') ADVANCE(659); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(590); + if (lookahead == 'e') ADVANCE(591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'e') ADVANCE(657); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'e') ADVANCE(651); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'f') ADVANCE(253); - if (lookahead == 'n') ADVANCE(548); - if (lookahead == 's') ADVANCE(501); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); - if (('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'e') ADVANCE(593); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'f') ADVANCE(475); + if (lookahead == 'e') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'f') ADVANCE(542); - if (lookahead == 'i') ADVANCE(587); + if (lookahead == 'e') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'f') ADVANCE(479); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'f') ADVANCE(253); + if (lookahead == 'n') ADVANCE(551); + if (lookahead == 's') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'f') ADVANCE(519); + if (lookahead == 'f') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'g') ADVANCE(237); + if (lookahead == 'f') ADVANCE(545); + if (lookahead == 'i') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'g') ADVANCE(234); + if (lookahead == 'f') ADVANCE(482); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'g') ADVANCE(235); + if (lookahead == 'f') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'g') ADVANCE(572); + if (lookahead == 'g') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'g') ADVANCE(599); + if (lookahead == 'g') ADVANCE(234); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'h') ADVANCE(298); + if (lookahead == 'g') ADVANCE(235); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'h') ADVANCE(241); + if (lookahead == 'g') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'h') ADVANCE(513); + if (lookahead == 'g') ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'h') ADVANCE(400); + if (lookahead == 'h') ADVANCE(298); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'h') ADVANCE(619); + if (lookahead == 'h') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(571); + if (lookahead == 'h') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(491); - if (lookahead == 'l') ADVANCE(603); + if (lookahead == 'h') ADVANCE(403); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(491); + if (lookahead == 'h') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(714); + if (lookahead == 'i') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(688); + if (lookahead == 'i') ADVANCE(494); + if (lookahead == 'l') ADVANCE(606); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(595); + if (lookahead == 'i') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(435); - if (lookahead == 'l') ADVANCE(412); + if (lookahead == 'i') ADVANCE(717); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(435); + if (lookahead == 'i') ADVANCE(691); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(587); - if (lookahead == 'l') ADVANCE(612); - if (lookahead == 's') ADVANCE(497); - if (lookahead == 'u') ADVANCE(507); + if (lookahead == 'i') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(587); - if (lookahead == 'l') ADVANCE(616); - if (lookahead == 's') ADVANCE(497); + if (lookahead == 'i') ADVANCE(438); + if (lookahead == 'l') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(679); + if (lookahead == 'i') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(598); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(706); + if (lookahead == 'i') ADVANCE(590); + if (lookahead == 'l') ADVANCE(615); + if (lookahead == 's') ADVANCE(500); + if (lookahead == 'u') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(598); + if (lookahead == 'i') ADVANCE(590); + if (lookahead == 'l') ADVANCE(619); + if (lookahead == 's') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(592); + if (lookahead == 'i') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(403); + if (lookahead == 'i') ADVANCE(601); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 's') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(545); + if (lookahead == 'i') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'i') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(596); + if (lookahead == 'i') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(593); + if (lookahead == 'i') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(546); + if (lookahead == 'i') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(560); + if (lookahead == 'i') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(594); + if (lookahead == 'i') ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(562); + if (lookahead == 'i') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'i') ADVANCE(624); + if (lookahead == 'i') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'k') ADVANCE(214); + if (lookahead == 'i') ADVANCE(597); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'k') ADVANCE(464); + if (lookahead == 'i') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'k') ADVANCE(671); + if (lookahead == 'i') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(499); - if (lookahead == 'n') ADVANCE(432); - if (lookahead == 's') ADVANCE(552); - if (lookahead == 'w') ADVANCE(408); + if (lookahead == 'k') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(499); - if (lookahead == 'n') ADVANCE(711); - if (lookahead == 's') ADVANCE(712); + if (lookahead == 'k') ADVANCE(467); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(667); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(642); - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'k') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(667); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(642); - if (lookahead == 'x') ADVANCE(689); + if (lookahead == 'l') ADVANCE(502); + if (lookahead == 'n') ADVANCE(435); + if (lookahead == 's') ADVANCE(555); + if (lookahead == 'w') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(667); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(662); - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'l') ADVANCE(502); + if (lookahead == 'n') ADVANCE(714); + if (lookahead == 's') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(667); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(662); - if (lookahead == 'x') ADVANCE(689); + if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(645); + if (lookahead == 'x') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(667); - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(645); + if (lookahead == 'x') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(237); + if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(665); + if (lookahead == 'x') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(229); + if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(665); + if (lookahead == 'x') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(188); + if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'x') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(431); + if (lookahead == 'l') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(535); - if (lookahead == 't') ADVANCE(424); + if (lookahead == 'l') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(535); + if (lookahead == 'l') ADVANCE(188); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(613); + if (lookahead == 'l') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(512); + if (lookahead == 'l') ADVANCE(538); + if (lookahead == 't') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(533); + if (lookahead == 'l') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(445); + if (lookahead == 'l') ADVANCE(616); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(625); + if (lookahead == 'l') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(500); - if (lookahead == 'n') ADVANCE(711); - if (lookahead == 's') ADVANCE(712); + if (lookahead == 'l') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(500); + if (lookahead == 'l') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(449); + if (lookahead == 'l') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(459); + if (lookahead == 'l') ADVANCE(503); + if (lookahead == 'n') ADVANCE(714); + if (lookahead == 's') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(460); + if (lookahead == 'l') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(511); + if (lookahead == 'l') ADVANCE(452); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(670); + if (lookahead == 'l') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(516); + if (lookahead == 'l') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'l') ADVANCE(672); + if (lookahead == 'l') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(242); - if (lookahead == 'y') ADVANCE(584); + if (lookahead == 'l') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'l') ADVANCE(519); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(630); - if (lookahead == 'n') ADVANCE(668); + if (lookahead == 'l') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(630); - if (lookahead == 'n') ADVANCE(669); + if (lookahead == 'm') ADVANCE(242); + if (lookahead == 'y') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(630); - if (lookahead == 'n') ADVANCE(690); + if (lookahead == 'm') ADVANCE(347); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(630); + if (lookahead == 'm') ADVANCE(633); + if (lookahead == 'n') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(453); + if (lookahead == 'm') ADVANCE(633); + if (lookahead == 'n') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(455); + if (lookahead == 'm') ADVANCE(633); + if (lookahead == 'n') ADVANCE(693); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(456); + if (lookahead == 'm') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(469); + if (lookahead == 'm') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(462); + if (lookahead == 'm') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'm') ADVANCE(637); - if (lookahead == 'n') ADVANCE(669); + if (lookahead == 'm') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(642); - if (lookahead == 'x') ADVANCE(689); + if (lookahead == 'm') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(662); - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'm') ADVANCE(465); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(695); - if (lookahead == 'r') ADVANCE(662); - if (lookahead == 'x') ADVANCE(689); + if (lookahead == 'm') ADVANCE(640); + if (lookahead == 'n') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(192); + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(645); + if (lookahead == 'x') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(441); - if (lookahead == 's') ADVANCE(501); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); - if (('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(665); + if (lookahead == 'x') ADVANCE(632); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(441); - if (lookahead == 's') ADVANCE(503); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); - if (('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'n') ADVANCE(698); + if (lookahead == 'r') ADVANCE(665); + if (lookahead == 'x') ADVANCE(692); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(237); + if (lookahead == 'n') ADVANCE(192); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(524); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'n') ADVANCE(444); + if (lookahead == 's') ADVANCE(504); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(339); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == 'n') ADVANCE(444); + if (lookahead == 's') ADVANCE(506); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(348); + if (lookahead == 'n') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(181); + if (lookahead == 'n') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(217); + if (lookahead == 'n') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(707); + if (lookahead == 'n') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(249); + if (lookahead == 'n') ADVANCE(181); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(433); - if (lookahead == 's') ADVANCE(552); - if (lookahead == 'w') ADVANCE(408); + if (lookahead == 'n') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(548); + if (lookahead == 'n') ADVANCE(710); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(489); + if (lookahead == 'n') ADVANCE(249); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(711); - if (lookahead == 's') ADVANCE(552); - if (lookahead == 'w') ADVANCE(408); + if (lookahead == 'n') ADVANCE(436); + if (lookahead == 's') ADVANCE(555); + if (lookahead == 'w') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(711); - if (lookahead == 's') ADVANCE(712); + if (lookahead == 'n') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(711); + if (lookahead == 'n') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(422); + if (lookahead == 'n') ADVANCE(714); + if (lookahead == 's') ADVANCE(555); + if (lookahead == 'w') ADVANCE(411); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(490); + if (lookahead == 'n') ADVANCE(714); + if (lookahead == 's') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(488); + if (lookahead == 'n') ADVANCE(714); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(677); + if (lookahead == 'n') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(437); + if (lookahead == 'n') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(710); - if (lookahead == 's') ADVANCE(712); + if (lookahead == 'n') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(438); + if (lookahead == 'n') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(434); + if (lookahead == 'n') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(450); + if (lookahead == 'n') ADVANCE(713); + if (lookahead == 's') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(458); + if (lookahead == 'n') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(473); + if (lookahead == 'n') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(492); - if (lookahead == 'z') ADVANCE(445); + if (lookahead == 'n') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(492); + if (lookahead == 'n') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(702); + if (lookahead == 'n') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 598: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(550); + if (lookahead == 'n') ADVANCE(495); + if (lookahead == 'z') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(719); END_STATE(); case 599: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'n') ADVANCE(416); + if (lookahead == 'n') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 600: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(610); - if (lookahead == 'r') ADVANCE(465); + if (lookahead == 'n') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 601: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(610); + if (lookahead == 'n') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 602: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(409); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'n') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 603: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(708); + if (lookahead == 'o') ADVANCE(613); + if (lookahead == 'r') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 604: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(337); + if (lookahead == 'o') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 605: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(651); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'o') ADVANCE(412); + if (lookahead == 'u') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 606: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(509); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'o') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 607: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(410); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'o') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 608: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(504); + if (lookahead == 'o') ADVANCE(654); + if (lookahead == 'u') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 609: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(563); + if (lookahead == 'o') ADVANCE(512); + if (lookahead == 'u') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 610: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(532); + if (lookahead == 'o') ADVANCE(413); + if (lookahead == 'u') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 611: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(703); + if (lookahead == 'o') ADVANCE(507); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 612: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(580); + if (lookahead == 'o') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 613: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(427); + if (lookahead == 'o') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 614: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(573); + if (lookahead == 'o') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 615: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(647); + if (lookahead == 'o') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 616: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(585); + if (lookahead == 'o') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 617: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(505); + if (lookahead == 'o') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 618: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(655); + if (lookahead == 'o') ADVANCE(650); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 619: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(650); + if (lookahead == 'o') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 620: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(643); + if (lookahead == 'o') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 621: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(576); + if (lookahead == 'o') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 622: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(652); - if (lookahead == 'u') ADVANCE(540); + if (lookahead == 'o') ADVANCE(653); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 623: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(586); + if (lookahead == 'o') ADVANCE(646); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(577); + if (lookahead == 'o') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(404); + if (lookahead == 'o') ADVANCE(655); + if (lookahead == 'u') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'o') ADVANCE(510); + if (lookahead == 'o') ADVANCE(589); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 627: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(399); - if (lookahead == 'r') ADVANCE(211); + if (lookahead == 'o') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 628: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(399); + if (lookahead == 'o') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 629: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(618); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 'o') ADVANCE(513); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 630: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(686); + if (lookahead == 'p') ADVANCE(402); + if (lookahead == 'r') ADVANCE(211); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 631: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(445); + if (lookahead == 'p') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 632: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(477); + if (lookahead == 'p') ADVANCE(621); + if (lookahead == 't') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 633: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(411); + if (lookahead == 'p') ADVANCE(689); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(454); + if (lookahead == 'p') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); @@ -7074,665 +7075,689 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(417); + if (lookahead == 'p') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'p') ADVANCE(693); + if (lookahead == 'p') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'q') ADVANCE(701); + if (lookahead == 'p') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'q') ADVANCE(700); + if (lookahead == 'p') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(211); + if (lookahead == 'p') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(698); - if (lookahead == 'y') ADVANCE(631); + if (lookahead == 'q') ADVANCE(704); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(442); + if (lookahead == 'q') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(237); + if (lookahead == 'r') ADVANCE(211); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(257); + if (lookahead == 'r') ADVANCE(701); + if (lookahead == 'y') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(198); + if (lookahead == 'r') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(205); + if (lookahead == 'r') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(227); + if (lookahead == 'r') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(207); + if (lookahead == 'r') ADVANCE(198); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(697); + if (lookahead == 'r') ADVANCE(205); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(677); + if (lookahead == 'r') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(474); - if (lookahead == 's') ADVANCE(706); + if (lookahead == 'r') ADVANCE(207); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(474); + if (lookahead == 'r') ADVANCE(700); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(414); + if (lookahead == 'r') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(604); + if (lookahead == 'r') ADVANCE(477); + if (lookahead == 's') ADVANCE(709); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(681); + if (lookahead == 'r') ADVANCE(477); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(574); + if (lookahead == 'r') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(661); + if (lookahead == 'r') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(575); + if (lookahead == 'r') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(570); + if (lookahead == 'r') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(468); + if (lookahead == 'r') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(620); + if (lookahead == 'r') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(615); + if (lookahead == 'r') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'r') ADVANCE(699); - if (lookahead == 'y') ADVANCE(631); + if (lookahead == 'r') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(251); + if (lookahead == 'r') ADVANCE(623); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(678); + if (lookahead == 'r') ADVANCE(618); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(633); + if (lookahead == 'r') ADVANCE(702); + if (lookahead == 'y') ADVANCE(634); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(446); + if (lookahead == 's') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(680); - if (lookahead == 't') ADVANCE(514); + if (lookahead == 's') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(680); + if (lookahead == 's') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(448); + if (lookahead == 's') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(481); + if (lookahead == 's') ADVANCE(683); + if (lookahead == 't') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(452); + if (lookahead == 's') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(696); - if (lookahead == 't') ADVANCE(704); + if (lookahead == 's') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(632); + if (lookahead == 's') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(635); + if (lookahead == 's') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 's') ADVANCE(515); + if (lookahead == 's') ADVANCE(699); + if (lookahead == 't') ADVANCE(707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(237); + if (lookahead == 's') ADVANCE(635); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 678: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(175); + if (lookahead == 's') ADVANCE(638); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 679: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(335); + if (lookahead == 's') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 680: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(196); + if (lookahead == 't') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 681: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(179); + if (lookahead == 't') ADVANCE(175); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 682: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(345); + if (lookahead == 't') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 683: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(424); + if (lookahead == 't') ADVANCE(196); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 684: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(649); - if (lookahead == 'u') ADVANCE(674); - if (lookahead == 'w') ADVANCE(502); + if (lookahead == 't') ADVANCE(179); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 685: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(649); - if (lookahead == 'w') ADVANCE(502); + if (lookahead == 't') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 686: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(518); + if (lookahead == 't') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 687: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(521); + if (lookahead == 't') ADVANCE(652); + if (lookahead == 'u') ADVANCE(677); + if (lookahead == 'w') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 688: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(425); + if (lookahead == 't') ADVANCE(652); + if (lookahead == 'w') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 689: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(476); + if (lookahead == 't') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 690: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(514); + if (lookahead == 't') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(705); + if (lookahead == 't') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(517); + if (lookahead == 't') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 't') ADVANCE(520); + if (lookahead == 't') ADVANCE(517); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(419); + if (lookahead == 't') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(553); + if (lookahead == 't') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(558); + if (lookahead == 't') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(428); + if (lookahead == 'u') ADVANCE(422); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(447); - if (lookahead == 'y') ADVANCE(334); + if (lookahead == 'u') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(447); + if (lookahead == 'u') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(445); + if (lookahead == 'u') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(451); + if (lookahead == 'u') ADVANCE(450); + if (lookahead == 'y') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(457); + if (lookahead == 'u') ADVANCE(450); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(420); + if (lookahead == 'u') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(658); + if (lookahead == 'u') ADVANCE(454); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(659); + if (lookahead == 'u') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'u') ADVANCE(675); + if (lookahead == 'u') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'v') ADVANCE(250); + if (lookahead == 'u') ADVANCE(661); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'w') ADVANCE(715); + if (lookahead == 'u') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'u') ADVANCE(678); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'y') ADVANCE(471); + if (lookahead == 'v') ADVANCE(250); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'y') ADVANCE(472); + if (lookahead == 'w') ADVANCE(718); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'y') ADVANCE(584); + if (lookahead == 'x') ADVANCE(632); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'y') ADVANCE(634); + if (lookahead == 'y') ADVANCE(474); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'z') ADVANCE(445); + if (lookahead == 'y') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); - if (lookahead == 'z') ADVANCE(478); + if (lookahead == 'y') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); + if (lookahead == 'y') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(716); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 717: + ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); + if (lookahead == 'z') ADVANCE(448); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(719); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); + if (lookahead == 'z') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(719); + END_STATE(); + case 719: + ACCEPT_TOKEN(aux_sym_IDENTIFIER_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 720: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); default: @@ -7756,13 +7781,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [12] = {.lex_state = 164}, [13] = {.lex_state = 164}, [14] = {.lex_state = 6}, - [15] = {.lex_state = 5}, - [16] = {.lex_state = 163}, - [17] = {.lex_state = 6}, + [15] = {.lex_state = 163}, + [16] = {.lex_state = 5}, + [17] = {.lex_state = 2}, [18] = {.lex_state = 6}, [19] = {.lex_state = 163}, - [20] = {.lex_state = 2}, - [21] = {.lex_state = 163}, + [20] = {.lex_state = 163}, + [21] = {.lex_state = 6}, [22] = {.lex_state = 2}, [23] = {.lex_state = 5}, [24] = {.lex_state = 2}, @@ -7791,21 +7816,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [47] = {.lex_state = 3}, [48] = {.lex_state = 3}, [49] = {.lex_state = 3}, - [50] = {.lex_state = 4}, - [51] = {.lex_state = 163}, - [52] = {.lex_state = 4}, - [53] = {.lex_state = 4}, - [54] = {.lex_state = 163}, + [50] = {.lex_state = 163}, + [51] = {.lex_state = 4}, + [52] = {.lex_state = 163}, + [53] = {.lex_state = 163}, + [54] = {.lex_state = 4}, [55] = {.lex_state = 4}, - [56] = {.lex_state = 163}, + [56] = {.lex_state = 14}, [57] = {.lex_state = 4}, [58] = {.lex_state = 4}, - [59] = {.lex_state = 14}, + [59] = {.lex_state = 4}, [60] = {.lex_state = 4}, - [61] = {.lex_state = 4}, - [62] = {.lex_state = 163}, - [63] = {.lex_state = 4}, - [64] = {.lex_state = 163}, + [61] = {.lex_state = 163}, + [62] = {.lex_state = 4}, + [63] = {.lex_state = 163}, + [64] = {.lex_state = 4}, [65] = {.lex_state = 15}, [66] = {.lex_state = 15}, [67] = {.lex_state = 15}, @@ -7814,29 +7839,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [70] = {.lex_state = 15}, [71] = {.lex_state = 15}, [72] = {.lex_state = 15}, - [73] = {.lex_state = 2}, - [74] = {.lex_state = 2}, + [73] = {.lex_state = 15}, + [74] = {.lex_state = 15}, [75] = {.lex_state = 15}, - [76] = {.lex_state = 3}, + [76] = {.lex_state = 15}, [77] = {.lex_state = 15}, [78] = {.lex_state = 2}, [79] = {.lex_state = 15}, [80] = {.lex_state = 15}, - [81] = {.lex_state = 2}, - [82] = {.lex_state = 11}, + [81] = {.lex_state = 15}, + [82] = {.lex_state = 15}, [83] = {.lex_state = 2}, [84] = {.lex_state = 15}, [85] = {.lex_state = 15}, - [86] = {.lex_state = 15}, + [86] = {.lex_state = 3}, [87] = {.lex_state = 15}, - [88] = {.lex_state = 15}, + [88] = {.lex_state = 11}, [89] = {.lex_state = 15}, - [90] = {.lex_state = 15}, - [91] = {.lex_state = 15}, - [92] = {.lex_state = 15}, + [90] = {.lex_state = 2}, + [91] = {.lex_state = 2}, + [92] = {.lex_state = 2}, [93] = {.lex_state = 4}, - [94] = {.lex_state = 15}, - [95] = {.lex_state = 4}, + [94] = {.lex_state = 4}, + [95] = {.lex_state = 15}, [96] = {.lex_state = 11}, [97] = {.lex_state = 11}, [98] = {.lex_state = 11}, @@ -8119,19 +8144,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [375] = {.lex_state = 16}, [376] = {.lex_state = 16}, [377] = {.lex_state = 16}, - [378] = {.lex_state = 16}, + [378] = {.lex_state = 20}, [379] = {.lex_state = 16}, [380] = {.lex_state = 16}, [381] = {.lex_state = 16}, [382] = {.lex_state = 16}, [383] = {.lex_state = 16}, - [384] = {.lex_state = 20}, - [385] = {.lex_state = 16}, + [384] = {.lex_state = 16}, + [385] = {.lex_state = 20}, [386] = {.lex_state = 16}, [387] = {.lex_state = 16}, - [388] = {.lex_state = 20}, - [389] = {.lex_state = 16}, - [390] = {.lex_state = 20}, + [388] = {.lex_state = 16}, + [389] = {.lex_state = 20}, + [390] = {.lex_state = 16}, [391] = {.lex_state = 16}, [392] = {.lex_state = 16}, [393] = {.lex_state = 16}, @@ -8160,7 +8185,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [416] = {.lex_state = 18}, [417] = {.lex_state = 18}, [418] = {.lex_state = 18}, - [419] = {.lex_state = 22}, + [419] = {.lex_state = 19}, [420] = {.lex_state = 19}, [421] = {.lex_state = 19}, [422] = {.lex_state = 19}, @@ -8189,16 +8214,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [445] = {.lex_state = 23}, [446] = {.lex_state = 19}, [447] = {.lex_state = 19}, - [448] = {.lex_state = 19}, + [448] = {.lex_state = 22}, [449] = {.lex_state = 19}, [450] = {.lex_state = 19}, - [451] = {.lex_state = 22}, + [451] = {.lex_state = 19}, [452] = {.lex_state = 19}, [453] = {.lex_state = 19}, [454] = {.lex_state = 19}, [455] = {.lex_state = 19}, [456] = {.lex_state = 19}, - [457] = {.lex_state = 19}, + [457] = {.lex_state = 22}, [458] = {.lex_state = 19}, [459] = {.lex_state = 22}, [460] = {.lex_state = 19}, @@ -8210,7 +8235,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [466] = {.lex_state = 19}, [467] = {.lex_state = 22}, [468] = {.lex_state = 17}, - [469] = {.lex_state = 22}, + [469] = {.lex_state = 17}, [470] = {.lex_state = 17}, [471] = {.lex_state = 22}, [472] = {.lex_state = 22}, @@ -8218,7 +8243,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [474] = {.lex_state = 22}, [475] = {.lex_state = 22}, [476] = {.lex_state = 17}, - [477] = {.lex_state = 17}, + [477] = {.lex_state = 22}, [478] = {.lex_state = 17}, [479] = {.lex_state = 17}, [480] = {.lex_state = 17}, @@ -8239,8 +8264,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [495] = {.lex_state = 17}, [496] = {.lex_state = 17}, [497] = {.lex_state = 17}, - [498] = {.lex_state = 17}, - [499] = {.lex_state = 22}, + [498] = {.lex_state = 22}, + [499] = {.lex_state = 17}, [500] = {.lex_state = 17}, [501] = {.lex_state = 17}, [502] = {.lex_state = 17}, @@ -8268,7 +8293,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [524] = {.lex_state = 17}, [525] = {.lex_state = 17}, [526] = {.lex_state = 17}, - [527] = {.lex_state = 22}, + [527] = {.lex_state = 17}, [528] = {.lex_state = 17}, [529] = {.lex_state = 17}, [530] = {.lex_state = 17}, @@ -8286,7 +8311,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [542] = {.lex_state = 17}, [543] = {.lex_state = 17}, [544] = {.lex_state = 17}, - [545] = {.lex_state = 17}, + [545] = {.lex_state = 22}, [546] = {.lex_state = 17}, [547] = {.lex_state = 17}, [548] = {.lex_state = 17}, @@ -8581,26 +8606,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [837] = {.lex_state = 7}, [838] = {.lex_state = 7}, [839] = {.lex_state = 7}, - [840] = {.lex_state = 13}, + [840] = {.lex_state = 7}, [841] = {.lex_state = 13}, [842] = {.lex_state = 13}, - [843] = {.lex_state = 7}, - [844] = {.lex_state = 7}, - [845] = {.lex_state = 7}, - [846] = {.lex_state = 25}, - [847] = {.lex_state = 25}, + [843] = {.lex_state = 13}, + [844] = {.lex_state = 25}, + [845] = {.lex_state = 25}, + [846] = {.lex_state = 7}, + [847] = {.lex_state = 7}, [848] = {.lex_state = 25}, [849] = {.lex_state = 25}, - [850] = {.lex_state = 7}, + [850] = {.lex_state = 25}, [851] = {.lex_state = 25}, - [852] = {.lex_state = 25}, - [853] = {.lex_state = 25}, + [852] = {.lex_state = 7}, + [853] = {.lex_state = 7}, [854] = {.lex_state = 25}, - [855] = {.lex_state = 25}, + [855] = {.lex_state = 7}, [856] = {.lex_state = 25}, [857] = {.lex_state = 7}, [858] = {.lex_state = 25}, - [859] = {.lex_state = 7}, + [859] = {.lex_state = 25}, [860] = {.lex_state = 25}, [861] = {.lex_state = 25}, [862] = {.lex_state = 25}, @@ -8609,8 +8634,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [865] = {.lex_state = 25}, [866] = {.lex_state = 25}, [867] = {.lex_state = 25}, - [868] = {.lex_state = 167}, - [869] = {.lex_state = 12}, + [868] = {.lex_state = 25}, + [869] = {.lex_state = 167}, [870] = {.lex_state = 12}, [871] = {.lex_state = 12}, [872] = {.lex_state = 12}, @@ -8619,175 +8644,175 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [875] = {.lex_state = 12}, [876] = {.lex_state = 7}, [877] = {.lex_state = 12}, - [878] = {.lex_state = 7}, - [879] = {.lex_state = 7}, + [878] = {.lex_state = 12}, + [879] = {.lex_state = 12}, [880] = {.lex_state = 7}, - [881] = {.lex_state = 7}, + [881] = {.lex_state = 12}, [882] = {.lex_state = 7}, - [883] = {.lex_state = 7}, - [884] = {.lex_state = 7}, - [885] = {.lex_state = 7}, + [883] = {.lex_state = 12}, + [884] = {.lex_state = 12}, + [885] = {.lex_state = 167}, [886] = {.lex_state = 7}, - [887] = {.lex_state = 167}, + [887] = {.lex_state = 7}, [888] = {.lex_state = 12}, - [889] = {.lex_state = 12}, + [889] = {.lex_state = 7}, [890] = {.lex_state = 12}, [891] = {.lex_state = 12}, [892] = {.lex_state = 12}, [893] = {.lex_state = 12}, - [894] = {.lex_state = 7}, + [894] = {.lex_state = 12}, [895] = {.lex_state = 167}, - [896] = {.lex_state = 167}, + [896] = {.lex_state = 12}, [897] = {.lex_state = 12}, - [898] = {.lex_state = 12}, - [899] = {.lex_state = 7}, - [900] = {.lex_state = 12}, - [901] = {.lex_state = 12}, - [902] = {.lex_state = 12}, - [903] = {.lex_state = 12}, - [904] = {.lex_state = 12}, - [905] = {.lex_state = 166}, - [906] = {.lex_state = 166}, - [907] = {.lex_state = 12}, + [898] = {.lex_state = 7}, + [899] = {.lex_state = 12}, + [900] = {.lex_state = 7}, + [901] = {.lex_state = 7}, + [902] = {.lex_state = 167}, + [903] = {.lex_state = 7}, + [904] = {.lex_state = 7}, + [905] = {.lex_state = 7}, + [906] = {.lex_state = 7}, + [907] = {.lex_state = 7}, [908] = {.lex_state = 7}, - [909] = {.lex_state = 167}, - [910] = {.lex_state = 7}, - [911] = {.lex_state = 166}, - [912] = {.lex_state = 7}, + [909] = {.lex_state = 7}, + [910] = {.lex_state = 12}, + [911] = {.lex_state = 7}, + [912] = {.lex_state = 166}, [913] = {.lex_state = 7}, [914] = {.lex_state = 7}, - [915] = {.lex_state = 7}, + [915] = {.lex_state = 167}, [916] = {.lex_state = 7}, [917] = {.lex_state = 7}, - [918] = {.lex_state = 167}, - [919] = {.lex_state = 166}, + [918] = {.lex_state = 7}, + [919] = {.lex_state = 167}, [920] = {.lex_state = 7}, [921] = {.lex_state = 167}, - [922] = {.lex_state = 7}, + [922] = {.lex_state = 167}, [923] = {.lex_state = 7}, - [924] = {.lex_state = 7}, - [925] = {.lex_state = 167}, - [926] = {.lex_state = 167}, + [924] = {.lex_state = 166}, + [925] = {.lex_state = 166}, + [926] = {.lex_state = 166}, [927] = {.lex_state = 167}, [928] = {.lex_state = 167}, [929] = {.lex_state = 166}, - [930] = {.lex_state = 167}, + [930] = {.lex_state = 11}, [931] = {.lex_state = 167}, [932] = {.lex_state = 167}, [933] = {.lex_state = 167}, [934] = {.lex_state = 167}, [935] = {.lex_state = 167}, - [936] = {.lex_state = 167}, + [936] = {.lex_state = 166}, [937] = {.lex_state = 167}, [938] = {.lex_state = 167}, - [939] = {.lex_state = 167}, - [940] = {.lex_state = 166}, - [941] = {.lex_state = 7}, + [939] = {.lex_state = 166}, + [940] = {.lex_state = 167}, + [941] = {.lex_state = 166}, [942] = {.lex_state = 7}, - [943] = {.lex_state = 166}, - [944] = {.lex_state = 166}, - [945] = {.lex_state = 11}, - [946] = {.lex_state = 166}, - [947] = {.lex_state = 166}, - [948] = {.lex_state = 7}, - [949] = {.lex_state = 7}, + [943] = {.lex_state = 7}, + [944] = {.lex_state = 167}, + [945] = {.lex_state = 167}, + [946] = {.lex_state = 167}, + [947] = {.lex_state = 167}, + [948] = {.lex_state = 167}, + [949] = {.lex_state = 167}, [950] = {.lex_state = 166}, - [951] = {.lex_state = 167}, - [952] = {.lex_state = 167}, - [953] = {.lex_state = 166}, - [954] = {.lex_state = 167}, + [951] = {.lex_state = 7}, + [952] = {.lex_state = 166}, + [953] = {.lex_state = 7}, + [954] = {.lex_state = 166}, [955] = {.lex_state = 167}, [956] = {.lex_state = 167}, [957] = {.lex_state = 167}, [958] = {.lex_state = 167}, [959] = {.lex_state = 166}, - [960] = {.lex_state = 167}, + [960] = {.lex_state = 166}, [961] = {.lex_state = 167}, - [962] = {.lex_state = 167}, + [962] = {.lex_state = 166}, [963] = {.lex_state = 167}, - [964] = {.lex_state = 166}, + [964] = {.lex_state = 167}, [965] = {.lex_state = 167}, [966] = {.lex_state = 167}, [967] = {.lex_state = 167}, - [968] = {.lex_state = 166}, - [969] = {.lex_state = 167}, + [968] = {.lex_state = 167}, + [969] = {.lex_state = 8}, [970] = {.lex_state = 167}, - [971] = {.lex_state = 166}, + [971] = {.lex_state = 167}, [972] = {.lex_state = 167}, [973] = {.lex_state = 167}, - [974] = {.lex_state = 167}, - [975] = {.lex_state = 167}, - [976] = {.lex_state = 166}, + [974] = {.lex_state = 166}, + [975] = {.lex_state = 166}, + [976] = {.lex_state = 167}, [977] = {.lex_state = 166}, - [978] = {.lex_state = 166}, + [978] = {.lex_state = 167}, [979] = {.lex_state = 166}, [980] = {.lex_state = 167}, - [981] = {.lex_state = 8}, + [981] = {.lex_state = 166}, [982] = {.lex_state = 166}, - [983] = {.lex_state = 7}, + [983] = {.lex_state = 166}, [984] = {.lex_state = 166}, [985] = {.lex_state = 166}, - [986] = {.lex_state = 167}, - [987] = {.lex_state = 7}, - [988] = {.lex_state = 11}, - [989] = {.lex_state = 167}, - [990] = {.lex_state = 7}, - [991] = {.lex_state = 167}, - [992] = {.lex_state = 167}, - [993] = {.lex_state = 7}, - [994] = {.lex_state = 7}, - [995] = {.lex_state = 7}, - [996] = {.lex_state = 7}, - [997] = {.lex_state = 166}, - [998] = {.lex_state = 166}, - [999] = {.lex_state = 167}, - [1000] = {.lex_state = 167}, + [986] = {.lex_state = 166}, + [987] = {.lex_state = 166}, + [988] = {.lex_state = 7}, + [989] = {.lex_state = 7}, + [990] = {.lex_state = 167}, + [991] = {.lex_state = 166}, + [992] = {.lex_state = 7}, + [993] = {.lex_state = 11}, + [994] = {.lex_state = 167}, + [995] = {.lex_state = 167}, + [996] = {.lex_state = 166}, + [997] = {.lex_state = 11}, + [998] = {.lex_state = 7}, + [999] = {.lex_state = 166}, + [1000] = {.lex_state = 7}, [1001] = {.lex_state = 167}, - [1002] = {.lex_state = 167}, - [1003] = {.lex_state = 167}, - [1004] = {.lex_state = 167}, + [1002] = {.lex_state = 166}, + [1003] = {.lex_state = 166}, + [1004] = {.lex_state = 166}, [1005] = {.lex_state = 166}, [1006] = {.lex_state = 166}, - [1007] = {.lex_state = 166}, - [1008] = {.lex_state = 8}, - [1009] = {.lex_state = 8}, - [1010] = {.lex_state = 8}, - [1011] = {.lex_state = 166}, - [1012] = {.lex_state = 7}, - [1013] = {.lex_state = 7}, + [1007] = {.lex_state = 167}, + [1008] = {.lex_state = 7}, + [1009] = {.lex_state = 167}, + [1010] = {.lex_state = 7}, + [1011] = {.lex_state = 167}, + [1012] = {.lex_state = 166}, + [1013] = {.lex_state = 167}, [1014] = {.lex_state = 167}, [1015] = {.lex_state = 7}, - [1016] = {.lex_state = 166}, - [1017] = {.lex_state = 166}, - [1018] = {.lex_state = 167}, - [1019] = {.lex_state = 7}, - [1020] = {.lex_state = 166}, - [1021] = {.lex_state = 166}, - [1022] = {.lex_state = 166}, - [1023] = {.lex_state = 167}, - [1024] = {.lex_state = 167}, - [1025] = {.lex_state = 167}, - [1026] = {.lex_state = 11}, - [1027] = {.lex_state = 11}, + [1016] = {.lex_state = 167}, + [1017] = {.lex_state = 167}, + [1018] = {.lex_state = 7}, + [1019] = {.lex_state = 167}, + [1020] = {.lex_state = 8}, + [1021] = {.lex_state = 8}, + [1022] = {.lex_state = 8}, + [1023] = {.lex_state = 11}, + [1024] = {.lex_state = 7}, + [1025] = {.lex_state = 166}, + [1026] = {.lex_state = 167}, + [1027] = {.lex_state = 167}, [1028] = {.lex_state = 166}, - [1029] = {.lex_state = 166}, + [1029] = {.lex_state = 7}, [1030] = {.lex_state = 167}, [1031] = {.lex_state = 167}, - [1032] = {.lex_state = 167}, + [1032] = {.lex_state = 166}, [1033] = {.lex_state = 167}, - [1034] = {.lex_state = 166}, - [1035] = {.lex_state = 167}, + [1034] = {.lex_state = 11}, + [1035] = {.lex_state = 11}, [1036] = {.lex_state = 167}, [1037] = {.lex_state = 167}, [1038] = {.lex_state = 166}, [1039] = {.lex_state = 167}, - [1040] = {.lex_state = 166}, - [1041] = {.lex_state = 166}, - [1042] = {.lex_state = 167}, + [1040] = {.lex_state = 167}, + [1041] = {.lex_state = 167}, + [1042] = {.lex_state = 166}, [1043] = {.lex_state = 167}, [1044] = {.lex_state = 167}, - [1045] = {.lex_state = 167}, - [1046] = {.lex_state = 167}, + [1045] = {.lex_state = 166}, + [1046] = {.lex_state = 166}, [1047] = {.lex_state = 167}, [1048] = {.lex_state = 167}, [1049] = {.lex_state = 167}, @@ -8797,18 +8822,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1053] = {.lex_state = 167}, [1054] = {.lex_state = 167}, [1055] = {.lex_state = 167}, - [1056] = {.lex_state = 167}, + [1056] = {.lex_state = 166}, [1057] = {.lex_state = 167}, [1058] = {.lex_state = 167}, [1059] = {.lex_state = 167}, - [1060] = {.lex_state = 166}, + [1060] = {.lex_state = 167}, [1061] = {.lex_state = 167}, [1062] = {.lex_state = 167}, - [1063] = {.lex_state = 167}, + [1063] = {.lex_state = 166}, [1064] = {.lex_state = 167}, - [1065] = {.lex_state = 167}, + [1065] = {.lex_state = 166}, [1066] = {.lex_state = 167}, - [1067] = {.lex_state = 166}, + [1067] = {.lex_state = 167}, [1068] = {.lex_state = 167}, [1069] = {.lex_state = 167}, [1070] = {.lex_state = 167}, @@ -8820,13 +8845,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1076] = {.lex_state = 167}, [1077] = {.lex_state = 167}, [1078] = {.lex_state = 167}, - [1079] = {.lex_state = 166}, + [1079] = {.lex_state = 167}, [1080] = {.lex_state = 167}, [1081] = {.lex_state = 167}, [1082] = {.lex_state = 167}, [1083] = {.lex_state = 167}, - [1084] = {.lex_state = 167}, - [1085] = {.lex_state = 166}, + [1084] = {.lex_state = 166}, + [1085] = {.lex_state = 167}, [1086] = {.lex_state = 167}, [1087] = {.lex_state = 167}, [1088] = {.lex_state = 167}, @@ -8841,32 +8866,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1097] = {.lex_state = 167}, [1098] = {.lex_state = 167}, [1099] = {.lex_state = 167}, - [1100] = {.lex_state = 166}, + [1100] = {.lex_state = 167}, [1101] = {.lex_state = 167}, - [1102] = {.lex_state = 167}, + [1102] = {.lex_state = 166}, [1103] = {.lex_state = 167}, - [1104] = {.lex_state = 11}, + [1104] = {.lex_state = 167}, [1105] = {.lex_state = 167}, [1106] = {.lex_state = 167}, [1107] = {.lex_state = 167}, [1108] = {.lex_state = 167}, [1109] = {.lex_state = 167}, [1110] = {.lex_state = 167}, - [1111] = {.lex_state = 11}, - [1112] = {.lex_state = 166}, - [1113] = {.lex_state = 11}, - [1114] = {.lex_state = 166}, + [1111] = {.lex_state = 167}, + [1112] = {.lex_state = 167}, + [1113] = {.lex_state = 167}, + [1114] = {.lex_state = 167}, [1115] = {.lex_state = 166}, [1116] = {.lex_state = 166}, [1117] = {.lex_state = 166}, - [1118] = {.lex_state = 166}, - [1119] = {.lex_state = 166}, - [1120] = {.lex_state = 166}, + [1118] = {.lex_state = 167}, + [1119] = {.lex_state = 167}, + [1120] = {.lex_state = 167}, [1121] = {.lex_state = 166}, [1122] = {.lex_state = 11}, - [1123] = {.lex_state = 11}, - [1124] = {.lex_state = 167}, - [1125] = {.lex_state = 166}, + [1123] = {.lex_state = 166}, + [1124] = {.lex_state = 166}, + [1125] = {.lex_state = 11}, [1126] = {.lex_state = 166}, [1127] = {.lex_state = 166}, [1128] = {.lex_state = 11}, @@ -8874,53 +8899,53 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1130] = {.lex_state = 166}, [1131] = {.lex_state = 166}, [1132] = {.lex_state = 166}, - [1133] = {.lex_state = 11}, + [1133] = {.lex_state = 166}, [1134] = {.lex_state = 166}, - [1135] = {.lex_state = 166}, + [1135] = {.lex_state = 11}, [1136] = {.lex_state = 166}, [1137] = {.lex_state = 166}, [1138] = {.lex_state = 166}, [1139] = {.lex_state = 166}, - [1140] = {.lex_state = 166}, - [1141] = {.lex_state = 166}, + [1140] = {.lex_state = 11}, + [1141] = {.lex_state = 8}, [1142] = {.lex_state = 11}, [1143] = {.lex_state = 11}, - [1144] = {.lex_state = 166}, + [1144] = {.lex_state = 11}, [1145] = {.lex_state = 11}, [1146] = {.lex_state = 11}, [1147] = {.lex_state = 166}, [1148] = {.lex_state = 166}, [1149] = {.lex_state = 166}, - [1150] = {.lex_state = 166}, - [1151] = {.lex_state = 166}, + [1150] = {.lex_state = 167}, + [1151] = {.lex_state = 167}, [1152] = {.lex_state = 166}, [1153] = {.lex_state = 166}, - [1154] = {.lex_state = 11}, - [1155] = {.lex_state = 166}, + [1154] = {.lex_state = 166}, + [1155] = {.lex_state = 167}, [1156] = {.lex_state = 166}, - [1157] = {.lex_state = 166}, - [1158] = {.lex_state = 166}, + [1157] = {.lex_state = 11}, + [1158] = {.lex_state = 11}, [1159] = {.lex_state = 166}, [1160] = {.lex_state = 166}, [1161] = {.lex_state = 166}, [1162] = {.lex_state = 166}, - [1163] = {.lex_state = 11}, + [1163] = {.lex_state = 166}, [1164] = {.lex_state = 166}, [1165] = {.lex_state = 166}, [1166] = {.lex_state = 166}, - [1167] = {.lex_state = 11}, + [1167] = {.lex_state = 166}, [1168] = {.lex_state = 166}, [1169] = {.lex_state = 166}, - [1170] = {.lex_state = 11}, - [1171] = {.lex_state = 167}, + [1170] = {.lex_state = 166}, + [1171] = {.lex_state = 166}, [1172] = {.lex_state = 166}, [1173] = {.lex_state = 166}, [1174] = {.lex_state = 166}, [1175] = {.lex_state = 166}, [1176] = {.lex_state = 166}, - [1177] = {.lex_state = 11}, + [1177] = {.lex_state = 166}, [1178] = {.lex_state = 166}, - [1179] = {.lex_state = 11}, + [1179] = {.lex_state = 166}, [1180] = {.lex_state = 166}, [1181] = {.lex_state = 166}, [1182] = {.lex_state = 166}, @@ -8930,28 +8955,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1186] = {.lex_state = 166}, [1187] = {.lex_state = 166}, [1188] = {.lex_state = 166}, - [1189] = {.lex_state = 11}, + [1189] = {.lex_state = 166}, [1190] = {.lex_state = 166}, [1191] = {.lex_state = 166}, [1192] = {.lex_state = 166}, [1193] = {.lex_state = 166}, - [1194] = {.lex_state = 166}, - [1195] = {.lex_state = 11}, + [1194] = {.lex_state = 11}, + [1195] = {.lex_state = 166}, [1196] = {.lex_state = 166}, [1197] = {.lex_state = 166}, - [1198] = {.lex_state = 166}, - [1199] = {.lex_state = 167}, - [1200] = {.lex_state = 166}, - [1201] = {.lex_state = 8}, + [1198] = {.lex_state = 11}, + [1199] = {.lex_state = 11}, + [1200] = {.lex_state = 11}, + [1201] = {.lex_state = 11}, [1202] = {.lex_state = 166}, - [1203] = {.lex_state = 166}, - [1204] = {.lex_state = 167}, - [1205] = {.lex_state = 167}, - [1206] = {.lex_state = 167}, - [1207] = {.lex_state = 11}, - [1208] = {.lex_state = 167}, - [1209] = {.lex_state = 167}, - [1210] = {.lex_state = 167}, + [1203] = {.lex_state = 11}, + [1204] = {.lex_state = 166}, + [1205] = {.lex_state = 166}, + [1206] = {.lex_state = 166}, + [1207] = {.lex_state = 166}, + [1208] = {.lex_state = 166}, + [1209] = {.lex_state = 166}, + [1210] = {.lex_state = 166}, [1211] = {.lex_state = 167}, [1212] = {.lex_state = 167}, [1213] = {.lex_state = 167}, @@ -8961,9 +8986,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 167}, [1218] = {.lex_state = 167}, [1219] = {.lex_state = 167}, - [1220] = {.lex_state = 166}, - [1221] = {.lex_state = 166}, - [1222] = {.lex_state = 166}, + [1220] = {.lex_state = 167}, + [1221] = {.lex_state = 167}, + [1222] = {.lex_state = 167}, [1223] = {.lex_state = 166}, [1224] = {.lex_state = 166}, [1225] = {.lex_state = 166}, @@ -8982,15 +9007,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1238] = {.lex_state = 166}, [1239] = {.lex_state = 166}, [1240] = {.lex_state = 166}, - [1241] = {.lex_state = 167}, - [1242] = {.lex_state = 167}, - [1243] = {.lex_state = 167}, - [1244] = {.lex_state = 166}, - [1245] = {.lex_state = 166}, - [1246] = {.lex_state = 166}, - [1247] = {.lex_state = 167}, - [1248] = {.lex_state = 167}, - [1249] = {.lex_state = 167}, + [1241] = {.lex_state = 166}, + [1242] = {.lex_state = 166}, + [1243] = {.lex_state = 166}, + [1244] = {.lex_state = 167}, + [1245] = {.lex_state = 167}, + [1246] = {.lex_state = 167}, + [1247] = {.lex_state = 166}, + [1248] = {.lex_state = 166}, + [1249] = {.lex_state = 166}, [1250] = {.lex_state = 167}, [1251] = {.lex_state = 167}, [1252] = {.lex_state = 167}, @@ -8999,56 +9024,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1255] = {.lex_state = 167}, [1256] = {.lex_state = 167}, [1257] = {.lex_state = 167}, - [1258] = {.lex_state = 166}, - [1259] = {.lex_state = 166}, - [1260] = {.lex_state = 166}, + [1258] = {.lex_state = 167}, + [1259] = {.lex_state = 167}, + [1260] = {.lex_state = 167}, [1261] = {.lex_state = 166}, [1262] = {.lex_state = 166}, [1263] = {.lex_state = 166}, [1264] = {.lex_state = 166}, [1265] = {.lex_state = 166}, - [1266] = {.lex_state = 166}, - [1267] = {.lex_state = 21}, + [1266] = {.lex_state = 21}, + [1267] = {.lex_state = 166}, [1268] = {.lex_state = 166}, [1269] = {.lex_state = 166}, - [1270] = {.lex_state = 24}, - [1271] = {.lex_state = 24}, - [1272] = {.lex_state = 24}, - [1273] = {.lex_state = 17}, + [1270] = {.lex_state = 166}, + [1271] = {.lex_state = 166}, + [1272] = {.lex_state = 166}, + [1273] = {.lex_state = 24}, [1274] = {.lex_state = 24}, - [1275] = {.lex_state = 9}, - [1276] = {.lex_state = 24}, + [1275] = {.lex_state = 24}, + [1276] = {.lex_state = 18}, [1277] = {.lex_state = 9}, - [1278] = {.lex_state = 18}, - [1279] = {.lex_state = 9}, + [1278] = {.lex_state = 24}, + [1279] = {.lex_state = 24}, [1280] = {.lex_state = 9}, [1281] = {.lex_state = 24}, - [1282] = {.lex_state = 16}, - [1283] = {.lex_state = 16}, - [1284] = {.lex_state = 24}, + [1282] = {.lex_state = 9}, + [1283] = {.lex_state = 9}, + [1284] = {.lex_state = 17}, [1285] = {.lex_state = 24}, - [1286] = {.lex_state = 7}, + [1286] = {.lex_state = 24}, [1287] = {.lex_state = 24}, - [1288] = {.lex_state = 24}, + [1288] = {.lex_state = 7}, [1289] = {.lex_state = 16}, - [1290] = {.lex_state = 7}, - [1291] = {.lex_state = 16}, + [1290] = {.lex_state = 16}, + [1291] = {.lex_state = 17}, [1292] = {.lex_state = 9}, - [1293] = {.lex_state = 24}, - [1294] = {.lex_state = 9}, - [1295] = {.lex_state = 24}, - [1296] = {.lex_state = 17}, - [1297] = {.lex_state = 24}, - [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 7}, - [1300] = {.lex_state = 19}, + [1293] = {.lex_state = 7}, + [1294] = {.lex_state = 19}, + [1295] = {.lex_state = 16}, + [1296] = {.lex_state = 9}, + [1297] = {.lex_state = 7}, + [1298] = {.lex_state = 24}, + [1299] = {.lex_state = 24}, + [1300] = {.lex_state = 24}, [1301] = {.lex_state = 24}, - [1302] = {.lex_state = 9}, - [1303] = {.lex_state = 9}, - [1304] = {.lex_state = 24}, - [1305] = {.lex_state = 9}, + [1302] = {.lex_state = 7}, + [1303] = {.lex_state = 24}, + [1304] = {.lex_state = 9}, + [1305] = {.lex_state = 16}, [1306] = {.lex_state = 9}, - [1307] = {.lex_state = 9}, + [1307] = {.lex_state = 24}, [1308] = {.lex_state = 9}, [1309] = {.lex_state = 9}, [1310] = {.lex_state = 9}, @@ -9060,16 +9085,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1316] = {.lex_state = 9}, [1317] = {.lex_state = 9}, [1318] = {.lex_state = 9}, - [1319] = {.lex_state = 17}, + [1319] = {.lex_state = 9}, [1320] = {.lex_state = 9}, [1321] = {.lex_state = 9}, [1322] = {.lex_state = 9}, [1323] = {.lex_state = 9}, - [1324] = {.lex_state = 9}, + [1324] = {.lex_state = 17}, [1325] = {.lex_state = 9}, [1326] = {.lex_state = 9}, [1327] = {.lex_state = 9}, - [1328] = {.lex_state = 17}, + [1328] = {.lex_state = 9}, [1329] = {.lex_state = 9}, [1330] = {.lex_state = 9}, [1331] = {.lex_state = 9}, @@ -9078,17 +9103,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1334] = {.lex_state = 9}, [1335] = {.lex_state = 9}, [1336] = {.lex_state = 9}, - [1337] = {.lex_state = 9}, - [1338] = {.lex_state = 17}, - [1339] = {.lex_state = 7}, - [1340] = {.lex_state = 17}, - [1341] = {.lex_state = 7}, + [1337] = {.lex_state = 17}, + [1338] = {.lex_state = 9}, + [1339] = {.lex_state = 9}, + [1340] = {.lex_state = 9}, + [1341] = {.lex_state = 9}, [1342] = {.lex_state = 9}, [1343] = {.lex_state = 9}, [1344] = {.lex_state = 9}, - [1345] = {.lex_state = 9}, - [1346] = {.lex_state = 7}, - [1347] = {.lex_state = 9}, + [1345] = {.lex_state = 7}, + [1346] = {.lex_state = 9}, + [1347] = {.lex_state = 17}, [1348] = {.lex_state = 9}, [1349] = {.lex_state = 9}, [1350] = {.lex_state = 9}, @@ -9096,68 +9121,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1352] = {.lex_state = 9}, [1353] = {.lex_state = 9}, [1354] = {.lex_state = 9}, - [1355] = {.lex_state = 9}, + [1355] = {.lex_state = 7}, [1356] = {.lex_state = 17}, [1357] = {.lex_state = 9}, - [1358] = {.lex_state = 9}, + [1358] = {.lex_state = 17}, [1359] = {.lex_state = 9}, - [1360] = {.lex_state = 9}, + [1360] = {.lex_state = 7}, [1361] = {.lex_state = 9}, [1362] = {.lex_state = 9}, [1363] = {.lex_state = 9}, [1364] = {.lex_state = 9}, - [1365] = {.lex_state = 17}, - [1366] = {.lex_state = 17}, + [1365] = {.lex_state = 9}, + [1366] = {.lex_state = 9}, [1367] = {.lex_state = 9}, - [1368] = {.lex_state = 17}, - [1369] = {.lex_state = 9}, - [1370] = {.lex_state = 9}, - [1371] = {.lex_state = 17}, + [1368] = {.lex_state = 9}, + [1369] = {.lex_state = 17}, + [1370] = {.lex_state = 17}, + [1371] = {.lex_state = 9}, [1372] = {.lex_state = 9}, - [1373] = {.lex_state = 9}, + [1373] = {.lex_state = 17}, [1374] = {.lex_state = 9}, [1375] = {.lex_state = 9}, [1376] = {.lex_state = 9}, [1377] = {.lex_state = 9}, [1378] = {.lex_state = 9}, [1379] = {.lex_state = 9}, - [1380] = {.lex_state = 17}, - [1381] = {.lex_state = 17}, - [1382] = {.lex_state = 9}, + [1380] = {.lex_state = 9}, + [1381] = {.lex_state = 9}, + [1382] = {.lex_state = 17}, [1383] = {.lex_state = 9}, [1384] = {.lex_state = 9}, - [1385] = {.lex_state = 9}, - [1386] = {.lex_state = 17}, + [1385] = {.lex_state = 17}, + [1386] = {.lex_state = 9}, [1387] = {.lex_state = 9}, [1388] = {.lex_state = 17}, [1389] = {.lex_state = 17}, [1390] = {.lex_state = 17}, [1391] = {.lex_state = 9}, [1392] = {.lex_state = 9}, - [1393] = {.lex_state = 9}, + [1393] = {.lex_state = 17}, [1394] = {.lex_state = 9}, - [1395] = {.lex_state = 9}, + [1395] = {.lex_state = 17}, [1396] = {.lex_state = 9}, - [1397] = {.lex_state = 17}, + [1397] = {.lex_state = 9}, [1398] = {.lex_state = 9}, [1399] = {.lex_state = 9}, [1400] = {.lex_state = 9}, [1401] = {.lex_state = 9}, [1402] = {.lex_state = 9}, - [1403] = {.lex_state = 17}, - [1404] = {.lex_state = 17}, + [1403] = {.lex_state = 9}, + [1404] = {.lex_state = 9}, [1405] = {.lex_state = 9}, [1406] = {.lex_state = 9}, [1407] = {.lex_state = 9}, [1408] = {.lex_state = 9}, [1409] = {.lex_state = 9}, - [1410] = {.lex_state = 9}, - [1411] = {.lex_state = 9}, + [1410] = {.lex_state = 17}, + [1411] = {.lex_state = 17}, [1412] = {.lex_state = 9}, [1413] = {.lex_state = 9}, [1414] = {.lex_state = 9}, [1415] = {.lex_state = 9}, - [1416] = {.lex_state = 9}, + [1416] = {.lex_state = 17}, [1417] = {.lex_state = 9}, [1418] = {.lex_state = 9}, [1419] = {.lex_state = 9}, @@ -9165,11 +9190,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1421] = {.lex_state = 9}, [1422] = {.lex_state = 9}, [1423] = {.lex_state = 9}, - [1424] = {.lex_state = 9}, + [1424] = {.lex_state = 17}, [1425] = {.lex_state = 9}, [1426] = {.lex_state = 9}, [1427] = {.lex_state = 9}, - [1428] = {.lex_state = 17}, + [1428] = {.lex_state = 9}, [1429] = {.lex_state = 9}, [1430] = {.lex_state = 9}, [1431] = {.lex_state = 9}, @@ -9186,97 +9211,97 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1442] = {.lex_state = 9}, [1443] = {.lex_state = 9}, [1444] = {.lex_state = 9}, - [1445] = {.lex_state = 7}, - [1446] = {.lex_state = 7}, + [1445] = {.lex_state = 9}, + [1446] = {.lex_state = 9}, [1447] = {.lex_state = 9}, - [1448] = {.lex_state = 9}, - [1449] = {.lex_state = 7}, + [1448] = {.lex_state = 8}, + [1449] = {.lex_state = 9}, [1450] = {.lex_state = 7}, - [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 7}, + [1451] = {.lex_state = 9}, + [1452] = {.lex_state = 9}, [1453] = {.lex_state = 9}, - [1454] = {.lex_state = 8}, - [1455] = {.lex_state = 9}, - [1456] = {.lex_state = 9}, - [1457] = {.lex_state = 7}, + [1454] = {.lex_state = 9}, + [1455] = {.lex_state = 7}, + [1456] = {.lex_state = 7}, + [1457] = {.lex_state = 9}, [1458] = {.lex_state = 7}, [1459] = {.lex_state = 7}, - [1460] = {.lex_state = 9}, + [1460] = {.lex_state = 7}, [1461] = {.lex_state = 7}, - [1462] = {.lex_state = 9}, + [1462] = {.lex_state = 7}, [1463] = {.lex_state = 9}, - [1464] = {.lex_state = 9}, - [1465] = {.lex_state = 9}, + [1464] = {.lex_state = 7}, + [1465] = {.lex_state = 7}, [1466] = {.lex_state = 7}, [1467] = {.lex_state = 7}, [1468] = {.lex_state = 9}, - [1469] = {.lex_state = 7}, - [1470] = {.lex_state = 9}, - [1471] = {.lex_state = 9}, + [1469] = {.lex_state = 9}, + [1470] = {.lex_state = 7}, + [1471] = {.lex_state = 7}, [1472] = {.lex_state = 9}, - [1473] = {.lex_state = 7}, - [1474] = {.lex_state = 9}, - [1475] = {.lex_state = 7}, + [1473] = {.lex_state = 9}, + [1474] = {.lex_state = 7}, + [1475] = {.lex_state = 9}, [1476] = {.lex_state = 9}, [1477] = {.lex_state = 7}, [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 7}, - [1480] = {.lex_state = 9}, - [1481] = {.lex_state = 7}, + [1479] = {.lex_state = 9}, + [1480] = {.lex_state = 7}, + [1481] = {.lex_state = 9}, [1482] = {.lex_state = 9}, - [1483] = {.lex_state = 7}, + [1483] = {.lex_state = 9}, [1484] = {.lex_state = 7}, - [1485] = {.lex_state = 7}, + [1485] = {.lex_state = 9}, [1486] = {.lex_state = 7}, [1487] = {.lex_state = 7}, [1488] = {.lex_state = 7}, - [1489] = {.lex_state = 7}, + [1489] = {.lex_state = 9}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 7}, + [1491] = {.lex_state = 9}, [1492] = {.lex_state = 7}, [1493] = {.lex_state = 7}, - [1494] = {.lex_state = 9}, + [1494] = {.lex_state = 7}, [1495] = {.lex_state = 7}, - [1496] = {.lex_state = 9}, - [1497] = {.lex_state = 9}, + [1496] = {.lex_state = 7}, + [1497] = {.lex_state = 7}, [1498] = {.lex_state = 9}, - [1499] = {.lex_state = 9}, + [1499] = {.lex_state = 7}, [1500] = {.lex_state = 7}, [1501] = {.lex_state = 9}, [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 9}, - [1504] = {.lex_state = 7}, - [1505] = {.lex_state = 9}, - [1506] = {.lex_state = 7}, - [1507] = {.lex_state = 9}, - [1508] = {.lex_state = 7}, + [1503] = {.lex_state = 7}, + [1504] = {.lex_state = 9}, + [1505] = {.lex_state = 7}, + [1506] = {.lex_state = 9}, + [1507] = {.lex_state = 7}, + [1508] = {.lex_state = 9}, [1509] = {.lex_state = 7}, - [1510] = {.lex_state = 7}, + [1510] = {.lex_state = 9}, [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 7}, - [1513] = {.lex_state = 9}, - [1514] = {.lex_state = 7}, + [1512] = {.lex_state = 9}, + [1513] = {.lex_state = 7}, + [1514] = {.lex_state = 9}, [1515] = {.lex_state = 7}, - [1516] = {.lex_state = 7}, + [1516] = {.lex_state = 9}, [1517] = {.lex_state = 7}, - [1518] = {.lex_state = 7}, + [1518] = {.lex_state = 9}, [1519] = {.lex_state = 7}, [1520] = {.lex_state = 9}, [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 9}, + [1522] = {.lex_state = 7}, [1523] = {.lex_state = 7}, [1524] = {.lex_state = 7}, [1525] = {.lex_state = 7}, [1526] = {.lex_state = 7}, [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 9}, + [1528] = {.lex_state = 7}, [1529] = {.lex_state = 7}, [1530] = {.lex_state = 7}, [1531] = {.lex_state = 7}, [1532] = {.lex_state = 7}, [1533] = {.lex_state = 7}, [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 7}, + [1535] = {.lex_state = 9}, [1536] = {.lex_state = 7}, [1537] = {.lex_state = 7}, [1538] = {.lex_state = 7}, @@ -9298,19 +9323,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1554] = {.lex_state = 7}, [1555] = {.lex_state = 7}, [1556] = {.lex_state = 7}, - [1557] = {.lex_state = 9}, + [1557] = {.lex_state = 7}, [1558] = {.lex_state = 7}, [1559] = {.lex_state = 7}, [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 7}, + [1561] = {.lex_state = 9}, [1562] = {.lex_state = 7}, [1563] = {.lex_state = 7}, [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 9}, + [1565] = {.lex_state = 7}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 7}, [1568] = {.lex_state = 7}, - [1569] = {.lex_state = 7}, + [1569] = {.lex_state = 9}, [1570] = {.lex_state = 7}, [1571] = {.lex_state = 7}, [1572] = {.lex_state = 7}, @@ -9335,19 +9360,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1591] = {.lex_state = 7}, [1592] = {.lex_state = 7}, [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 9}, + [1594] = {.lex_state = 7}, [1595] = {.lex_state = 7}, [1596] = {.lex_state = 7}, [1597] = {.lex_state = 7}, - [1598] = {.lex_state = 7}, + [1598] = {.lex_state = 9}, [1599] = {.lex_state = 7}, [1600] = {.lex_state = 7}, [1601] = {.lex_state = 7}, [1602] = {.lex_state = 7}, - [1603] = {.lex_state = 9}, - [1604] = {.lex_state = 9}, - [1605] = {.lex_state = 9}, - [1606] = {.lex_state = 9}, + [1603] = {.lex_state = 7}, + [1604] = {.lex_state = 7}, + [1605] = {.lex_state = 7}, + [1606] = {.lex_state = 7}, [1607] = {.lex_state = 9}, [1608] = {.lex_state = 9}, [1609] = {.lex_state = 9}, @@ -9356,38 +9381,38 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1612] = {.lex_state = 9}, [1613] = {.lex_state = 9}, [1614] = {.lex_state = 9}, - [1615] = {.lex_state = 169}, - [1616] = {.lex_state = 169}, - [1617] = {.lex_state = 168}, - [1618] = {.lex_state = 169}, - [1619] = {.lex_state = 168}, - [1620] = {.lex_state = 168}, + [1615] = {.lex_state = 9}, + [1616] = {.lex_state = 9}, + [1617] = {.lex_state = 9}, + [1618] = {.lex_state = 9}, + [1619] = {.lex_state = 169}, + [1620] = {.lex_state = 169}, [1621] = {.lex_state = 168}, [1622] = {.lex_state = 169}, - [1623] = {.lex_state = 169}, - [1624] = {.lex_state = 169}, - [1625] = {.lex_state = 169}, + [1623] = {.lex_state = 168}, + [1624] = {.lex_state = 168}, + [1625] = {.lex_state = 168}, [1626] = {.lex_state = 169}, - [1627] = {.lex_state = 169}, - [1628] = {.lex_state = 169}, + [1627] = {.lex_state = 168}, + [1628] = {.lex_state = 168}, [1629] = {.lex_state = 169}, [1630] = {.lex_state = 169}, - [1631] = {.lex_state = 168}, - [1632] = {.lex_state = 168}, - [1633] = {.lex_state = 168}, + [1631] = {.lex_state = 169}, + [1632] = {.lex_state = 169}, + [1633] = {.lex_state = 169}, [1634] = {.lex_state = 168}, [1635] = {.lex_state = 169}, [1636] = {.lex_state = 169}, [1637] = {.lex_state = 169}, [1638] = {.lex_state = 169}, - [1639] = {.lex_state = 169}, - [1640] = {.lex_state = 168}, - [1641] = {.lex_state = 168}, + [1639] = {.lex_state = 168}, + [1640] = {.lex_state = 169}, + [1641] = {.lex_state = 169}, [1642] = {.lex_state = 169}, - [1643] = {.lex_state = 168}, - [1644] = {.lex_state = 168}, - [1645] = {.lex_state = 168}, - [1646] = {.lex_state = 169}, + [1643] = {.lex_state = 169}, + [1644] = {.lex_state = 169}, + [1645] = {.lex_state = 169}, + [1646] = {.lex_state = 168}, [1647] = {.lex_state = 168}, [1648] = {.lex_state = 168}, [1649] = {.lex_state = 168}, @@ -9397,28 +9422,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1653] = {.lex_state = 168}, [1654] = {.lex_state = 168}, [1655] = {.lex_state = 168}, - [1656] = {.lex_state = 169}, + [1656] = {.lex_state = 168}, [1657] = {.lex_state = 168}, [1658] = {.lex_state = 168}, - [1659] = {.lex_state = 169}, - [1660] = {.lex_state = 169}, + [1659] = {.lex_state = 168}, + [1660] = {.lex_state = 168}, [1661] = {.lex_state = 168}, [1662] = {.lex_state = 169}, - [1663] = {.lex_state = 168}, + [1663] = {.lex_state = 169}, [1664] = {.lex_state = 168}, [1665] = {.lex_state = 168}, [1666] = {.lex_state = 169}, [1667] = {.lex_state = 169}, [1668] = {.lex_state = 168}, - [1669] = {.lex_state = 169}, - [1670] = {.lex_state = 168}, + [1669] = {.lex_state = 168}, + [1670] = {.lex_state = 169}, [1671] = {.lex_state = 169}, - [1672] = {.lex_state = 168}, + [1672] = {.lex_state = 169}, [1673] = {.lex_state = 168}, - [1674] = {.lex_state = 169}, - [1675] = {.lex_state = 169}, + [1674] = {.lex_state = 168}, + [1675] = {.lex_state = 168}, [1676] = {.lex_state = 168}, - [1677] = {.lex_state = 168}, + [1677] = {.lex_state = 169}, [1678] = {.lex_state = 168}, [1679] = {.lex_state = 168}, [1680] = {.lex_state = 169}, @@ -9426,11 +9451,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1682] = {.lex_state = 169}, [1683] = {.lex_state = 169}, [1684] = {.lex_state = 168}, - [1685] = {.lex_state = 169}, + [1685] = {.lex_state = 168}, [1686] = {.lex_state = 169}, [1687] = {.lex_state = 169}, [1688] = {.lex_state = 169}, - [1689] = {.lex_state = 169}, + [1689] = {.lex_state = 168}, [1690] = {.lex_state = 169}, [1691] = {.lex_state = 169}, [1692] = {.lex_state = 169}, @@ -9459,19 +9484,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1715] = {.lex_state = 169}, [1716] = {.lex_state = 169}, [1717] = {.lex_state = 169}, - [1718] = {.lex_state = 168}, + [1718] = {.lex_state = 169}, [1719] = {.lex_state = 169}, [1720] = {.lex_state = 169}, - [1721] = {.lex_state = 168}, + [1721] = {.lex_state = 169}, [1722] = {.lex_state = 169}, - [1723] = {.lex_state = 168}, + [1723] = {.lex_state = 169}, [1724] = {.lex_state = 169}, - [1725] = {.lex_state = 168}, + [1725] = {.lex_state = 169}, [1726] = {.lex_state = 169}, [1727] = {.lex_state = 169}, [1728] = {.lex_state = 169}, [1729] = {.lex_state = 169}, - [1730] = {.lex_state = 168}, + [1730] = {.lex_state = 169}, [1731] = {.lex_state = 168}, [1732] = {.lex_state = 169}, [1733] = {.lex_state = 169}, @@ -9479,14 +9504,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1735] = {.lex_state = 169}, [1736] = {.lex_state = 169}, [1737] = {.lex_state = 169}, - [1738] = {.lex_state = 169}, + [1738] = {.lex_state = 168}, [1739] = {.lex_state = 169}, [1740] = {.lex_state = 169}, [1741] = {.lex_state = 169}, [1742] = {.lex_state = 169}, [1743] = {.lex_state = 169}, [1744] = {.lex_state = 169}, - [1745] = {.lex_state = 169}, + [1745] = {.lex_state = 168}, [1746] = {.lex_state = 169}, [1747] = {.lex_state = 169}, [1748] = {.lex_state = 169}, @@ -9496,24 +9521,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1752] = {.lex_state = 169}, [1753] = {.lex_state = 169}, [1754] = {.lex_state = 168}, - [1755] = {.lex_state = 169}, - [1756] = {.lex_state = 169}, + [1755] = {.lex_state = 168}, + [1756] = {.lex_state = 168}, [1757] = {.lex_state = 169}, [1758] = {.lex_state = 169}, [1759] = {.lex_state = 169}, - [1760] = {.lex_state = 169}, + [1760] = {.lex_state = 168}, [1761] = {.lex_state = 169}, - [1762] = {.lex_state = 168}, - [1763] = {.lex_state = 168}, - [1764] = {.lex_state = 168}, - [1765] = {.lex_state = 170}, + [1762] = {.lex_state = 169}, + [1763] = {.lex_state = 169}, + [1764] = {.lex_state = 169}, + [1765] = {.lex_state = 169}, [1766] = {.lex_state = 168}, - [1767] = {.lex_state = 168}, + [1767] = {.lex_state = 169}, [1768] = {.lex_state = 168}, [1769] = {.lex_state = 168}, [1770] = {.lex_state = 168}, - [1771] = {.lex_state = 168}, - [1772] = {.lex_state = 171}, + [1771] = {.lex_state = 171}, + [1772] = {.lex_state = 168}, [1773] = {.lex_state = 168}, [1774] = {.lex_state = 168}, [1775] = {.lex_state = 168}, @@ -9535,7 +9560,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1791] = {.lex_state = 168}, [1792] = {.lex_state = 168}, [1793] = {.lex_state = 168}, - [1794] = {.lex_state = 168}, + [1794] = {.lex_state = 171}, [1795] = {.lex_state = 168}, [1796] = {.lex_state = 168}, [1797] = {.lex_state = 168}, @@ -9561,17 +9586,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 168}, [1818] = {.lex_state = 168}, [1819] = {.lex_state = 168}, - [1820] = {.lex_state = 171}, + [1820] = {.lex_state = 168}, [1821] = {.lex_state = 168}, [1822] = {.lex_state = 168}, [1823] = {.lex_state = 168}, [1824] = {.lex_state = 168}, - [1825] = {.lex_state = 171}, + [1825] = {.lex_state = 168}, [1826] = {.lex_state = 168}, [1827] = {.lex_state = 168}, [1828] = {.lex_state = 168}, [1829] = {.lex_state = 168}, - [1830] = {.lex_state = 168}, + [1830] = {.lex_state = 170}, [1831] = {.lex_state = 168}, [1832] = {.lex_state = 168}, [1833] = {.lex_state = 168}, @@ -9580,13 +9605,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1836] = {.lex_state = 168}, [1837] = {.lex_state = 168}, [1838] = {.lex_state = 168}, - [1839] = {.lex_state = 171}, - [1840] = {.lex_state = 170}, - [1841] = {.lex_state = 170}, - [1842] = {.lex_state = 170}, - [1843] = {.lex_state = 170}, - [1844] = {.lex_state = 170}, - [1845] = {.lex_state = 170}, + [1839] = {.lex_state = 168}, + [1840] = {.lex_state = 171}, + [1841] = {.lex_state = 168}, + [1842] = {.lex_state = 168}, + [1843] = {.lex_state = 168}, + [1844] = {.lex_state = 171}, + [1845] = {.lex_state = 168}, [1846] = {.lex_state = 170}, [1847] = {.lex_state = 170}, [1848] = {.lex_state = 170}, @@ -9602,16 +9627,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1858] = {.lex_state = 170}, [1859] = {.lex_state = 170}, [1860] = {.lex_state = 170}, - [1861] = {.lex_state = 168}, - [1862] = {.lex_state = 168}, - [1863] = {.lex_state = 168}, - [1864] = {.lex_state = 168}, + [1861] = {.lex_state = 170}, + [1862] = {.lex_state = 170}, + [1863] = {.lex_state = 170}, + [1864] = {.lex_state = 170}, [1865] = {.lex_state = 170}, [1866] = {.lex_state = 170}, - [1867] = {.lex_state = 170}, - [1868] = {.lex_state = 170}, - [1869] = {.lex_state = 170}, - [1870] = {.lex_state = 170}, + [1867] = {.lex_state = 168}, + [1868] = {.lex_state = 168}, + [1869] = {.lex_state = 168}, + [1870] = {.lex_state = 168}, [1871] = {.lex_state = 170}, [1872] = {.lex_state = 170}, [1873] = {.lex_state = 170}, @@ -9619,14 +9644,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1875] = {.lex_state = 170}, [1876] = {.lex_state = 170}, [1877] = {.lex_state = 170}, - [1878] = {.lex_state = 36}, + [1878] = {.lex_state = 170}, [1879] = {.lex_state = 170}, [1880] = {.lex_state = 170}, [1881] = {.lex_state = 170}, [1882] = {.lex_state = 170}, [1883] = {.lex_state = 170}, [1884] = {.lex_state = 170}, - [1885] = {.lex_state = 170}, + [1885] = {.lex_state = 36}, [1886] = {.lex_state = 170}, [1887] = {.lex_state = 170}, [1888] = {.lex_state = 170}, @@ -9646,418 +9671,418 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1902] = {.lex_state = 170}, [1903] = {.lex_state = 170}, [1904] = {.lex_state = 170}, - [1905] = {.lex_state = 7}, - [1906] = {.lex_state = 7}, - [1907] = {.lex_state = 7}, - [1908] = {.lex_state = 7}, - [1909] = {.lex_state = 163}, - [1910] = {.lex_state = 7}, + [1905] = {.lex_state = 170}, + [1906] = {.lex_state = 170}, + [1907] = {.lex_state = 170}, + [1908] = {.lex_state = 170}, + [1909] = {.lex_state = 170}, + [1910] = {.lex_state = 170}, [1911] = {.lex_state = 7}, - [1912] = {.lex_state = 163}, + [1912] = {.lex_state = 7}, [1913] = {.lex_state = 7}, [1914] = {.lex_state = 163}, [1915] = {.lex_state = 7}, [1916] = {.lex_state = 7}, - [1917] = {.lex_state = 163}, + [1917] = {.lex_state = 7}, [1918] = {.lex_state = 7}, [1919] = {.lex_state = 7}, - [1920] = {.lex_state = 163}, - [1921] = {.lex_state = 7}, - [1922] = {.lex_state = 7}, + [1920] = {.lex_state = 7}, + [1921] = {.lex_state = 163}, + [1922] = {.lex_state = 163}, [1923] = {.lex_state = 7}, - [1924] = {.lex_state = 7}, + [1924] = {.lex_state = 163}, [1925] = {.lex_state = 7}, - [1926] = {.lex_state = 7}, + [1926] = {.lex_state = 163}, [1927] = {.lex_state = 7}, [1928] = {.lex_state = 7}, [1929] = {.lex_state = 7}, [1930] = {.lex_state = 7}, [1931] = {.lex_state = 7}, - [1932] = {.lex_state = 163}, + [1932] = {.lex_state = 7}, [1933] = {.lex_state = 7}, [1934] = {.lex_state = 163}, - [1935] = {.lex_state = 163}, - [1936] = {.lex_state = 163}, - [1937] = {.lex_state = 163}, - [1938] = {.lex_state = 163}, - [1939] = {.lex_state = 163}, + [1935] = {.lex_state = 7}, + [1936] = {.lex_state = 7}, + [1937] = {.lex_state = 7}, + [1938] = {.lex_state = 7}, + [1939] = {.lex_state = 7}, [1940] = {.lex_state = 163}, [1941] = {.lex_state = 163}, [1942] = {.lex_state = 163}, [1943] = {.lex_state = 163}, - [1944] = {.lex_state = 26}, + [1944] = {.lex_state = 163}, [1945] = {.lex_state = 163}, [1946] = {.lex_state = 163}, - [1947] = {.lex_state = 16}, - [1948] = {.lex_state = 16}, + [1947] = {.lex_state = 163}, + [1948] = {.lex_state = 163}, [1949] = {.lex_state = 26}, - [1950] = {.lex_state = 27}, - [1951] = {.lex_state = 27}, - [1952] = {.lex_state = 27}, - [1953] = {.lex_state = 27}, - [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 27}, - [1956] = {.lex_state = 163}, - [1957] = {.lex_state = 27}, + [1950] = {.lex_state = 16}, + [1951] = {.lex_state = 163}, + [1952] = {.lex_state = 16}, + [1953] = {.lex_state = 163}, + [1954] = {.lex_state = 26}, + [1955] = {.lex_state = 163}, + [1956] = {.lex_state = 27}, + [1957] = {.lex_state = 163}, [1958] = {.lex_state = 163}, [1959] = {.lex_state = 163}, [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 27}, + [1961] = {.lex_state = 163}, [1962] = {.lex_state = 27}, - [1963] = {.lex_state = 163}, - [1964] = {.lex_state = 27}, + [1963] = {.lex_state = 16}, + [1964] = {.lex_state = 163}, [1965] = {.lex_state = 163}, [1966] = {.lex_state = 27}, - [1967] = {.lex_state = 16}, + [1967] = {.lex_state = 27}, [1968] = {.lex_state = 27}, [1969] = {.lex_state = 27}, [1970] = {.lex_state = 163}, [1971] = {.lex_state = 163}, - [1972] = {.lex_state = 27}, - [1973] = {.lex_state = 163}, + [1972] = {.lex_state = 163}, + [1973] = {.lex_state = 27}, [1974] = {.lex_state = 27}, [1975] = {.lex_state = 27}, [1976] = {.lex_state = 163}, [1977] = {.lex_state = 27}, [1978] = {.lex_state = 27}, - [1979] = {.lex_state = 163}, + [1979] = {.lex_state = 27}, [1980] = {.lex_state = 163}, [1981] = {.lex_state = 163}, - [1982] = {.lex_state = 163}, - [1983] = {.lex_state = 27}, - [1984] = {.lex_state = 27}, + [1982] = {.lex_state = 27}, + [1983] = {.lex_state = 163}, + [1984] = {.lex_state = 163}, [1985] = {.lex_state = 163}, [1986] = {.lex_state = 27}, [1987] = {.lex_state = 27}, - [1988] = {.lex_state = 16}, - [1989] = {.lex_state = 163}, + [1988] = {.lex_state = 27}, + [1989] = {.lex_state = 27}, [1990] = {.lex_state = 27}, [1991] = {.lex_state = 163}, - [1992] = {.lex_state = 163}, - [1993] = {.lex_state = 27}, - [1994] = {.lex_state = 163}, + [1992] = {.lex_state = 27}, + [1993] = {.lex_state = 163}, + [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, [1996] = {.lex_state = 163}, - [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 26}, - [1999] = {.lex_state = 163}, - [2000] = {.lex_state = 26}, - [2001] = {.lex_state = 37}, - [2002] = {.lex_state = 163}, - [2003] = {.lex_state = 37}, - [2004] = {.lex_state = 37}, - [2005] = {.lex_state = 26}, + [1997] = {.lex_state = 16}, + [1998] = {.lex_state = 27}, + [1999] = {.lex_state = 27}, + [2000] = {.lex_state = 163}, + [2001] = {.lex_state = 27}, + [2002] = {.lex_state = 27}, + [2003] = {.lex_state = 27}, + [2004] = {.lex_state = 26}, + [2005] = {.lex_state = 37}, [2006] = {.lex_state = 37}, [2007] = {.lex_state = 26}, [2008] = {.lex_state = 37}, - [2009] = {.lex_state = 37}, - [2010] = {.lex_state = 37}, - [2011] = {.lex_state = 37}, + [2009] = {.lex_state = 26}, + [2010] = {.lex_state = 163}, + [2011] = {.lex_state = 163}, [2012] = {.lex_state = 37}, [2013] = {.lex_state = 26}, [2014] = {.lex_state = 26}, - [2015] = {.lex_state = 26}, - [2016] = {.lex_state = 26}, - [2017] = {.lex_state = 7}, + [2015] = {.lex_state = 7}, + [2016] = {.lex_state = 37}, + [2017] = {.lex_state = 163}, [2018] = {.lex_state = 37}, - [2019] = {.lex_state = 26}, - [2020] = {.lex_state = 163}, + [2019] = {.lex_state = 163}, + [2020] = {.lex_state = 37}, [2021] = {.lex_state = 37}, - [2022] = {.lex_state = 37}, + [2022] = {.lex_state = 26}, [2023] = {.lex_state = 163}, - [2024] = {.lex_state = 26}, + [2024] = {.lex_state = 37}, [2025] = {.lex_state = 37}, - [2026] = {.lex_state = 163}, - [2027] = {.lex_state = 26}, + [2026] = {.lex_state = 26}, + [2027] = {.lex_state = 37}, [2028] = {.lex_state = 37}, - [2029] = {.lex_state = 163}, + [2029] = {.lex_state = 26}, [2030] = {.lex_state = 37}, - [2031] = {.lex_state = 26}, - [2032] = {.lex_state = 26}, - [2033] = {.lex_state = 163}, - [2034] = {.lex_state = 26}, + [2031] = {.lex_state = 163}, + [2032] = {.lex_state = 7}, + [2033] = {.lex_state = 37}, + [2034] = {.lex_state = 37}, [2035] = {.lex_state = 37}, [2036] = {.lex_state = 37}, - [2037] = {.lex_state = 163}, + [2037] = {.lex_state = 26}, [2038] = {.lex_state = 37}, - [2039] = {.lex_state = 163}, + [2039] = {.lex_state = 37}, [2040] = {.lex_state = 26}, - [2041] = {.lex_state = 163}, - [2042] = {.lex_state = 37}, - [2043] = {.lex_state = 26}, + [2041] = {.lex_state = 37}, + [2042] = {.lex_state = 26}, + [2043] = {.lex_state = 37}, [2044] = {.lex_state = 37}, [2045] = {.lex_state = 37}, - [2046] = {.lex_state = 37}, - [2047] = {.lex_state = 26}, - [2048] = {.lex_state = 37}, + [2046] = {.lex_state = 163}, + [2047] = {.lex_state = 163}, + [2048] = {.lex_state = 163}, [2049] = {.lex_state = 26}, - [2050] = {.lex_state = 37}, - [2051] = {.lex_state = 37}, - [2052] = {.lex_state = 37}, - [2053] = {.lex_state = 37}, - [2054] = {.lex_state = 7}, + [2050] = {.lex_state = 26}, + [2051] = {.lex_state = 26}, + [2052] = {.lex_state = 26}, + [2053] = {.lex_state = 26}, + [2054] = {.lex_state = 163}, [2055] = {.lex_state = 37}, [2056] = {.lex_state = 37}, [2057] = {.lex_state = 37}, - [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 7}, - [2060] = {.lex_state = 163}, - [2061] = {.lex_state = 16}, - [2062] = {.lex_state = 163}, - [2063] = {.lex_state = 26}, - [2064] = {.lex_state = 37}, + [2058] = {.lex_state = 26}, + [2059] = {.lex_state = 37}, + [2060] = {.lex_state = 26}, + [2061] = {.lex_state = 37}, + [2062] = {.lex_state = 37}, + [2063] = {.lex_state = 37}, + [2064] = {.lex_state = 26}, [2065] = {.lex_state = 26}, [2066] = {.lex_state = 26}, - [2067] = {.lex_state = 26}, - [2068] = {.lex_state = 26}, + [2067] = {.lex_state = 16}, + [2068] = {.lex_state = 163}, [2069] = {.lex_state = 16}, [2070] = {.lex_state = 163}, - [2071] = {.lex_state = 163}, - [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 163}, + [2071] = {.lex_state = 37}, + [2072] = {.lex_state = 163}, + [2073] = {.lex_state = 26}, [2074] = {.lex_state = 163}, - [2075] = {.lex_state = 26}, - [2076] = {.lex_state = 163}, - [2077] = {.lex_state = 163}, - [2078] = {.lex_state = 26}, - [2079] = {.lex_state = 163}, - [2080] = {.lex_state = 163}, - [2081] = {.lex_state = 163}, + [2075] = {.lex_state = 163}, + [2076] = {.lex_state = 26}, + [2077] = {.lex_state = 7}, + [2078] = {.lex_state = 16}, + [2079] = {.lex_state = 16}, + [2080] = {.lex_state = 26}, + [2081] = {.lex_state = 26}, [2082] = {.lex_state = 163}, [2083] = {.lex_state = 163}, - [2084] = {.lex_state = 7}, - [2085] = {.lex_state = 26}, - [2086] = {.lex_state = 163}, - [2087] = {.lex_state = 163}, + [2084] = {.lex_state = 26}, + [2085] = {.lex_state = 163}, + [2086] = {.lex_state = 26}, + [2087] = {.lex_state = 26}, [2088] = {.lex_state = 163}, [2089] = {.lex_state = 163}, [2090] = {.lex_state = 163}, - [2091] = {.lex_state = 26}, + [2091] = {.lex_state = 163}, [2092] = {.lex_state = 163}, [2093] = {.lex_state = 163}, [2094] = {.lex_state = 163}, [2095] = {.lex_state = 163}, [2096] = {.lex_state = 163}, - [2097] = {.lex_state = 163}, + [2097] = {.lex_state = 7}, [2098] = {.lex_state = 26}, [2099] = {.lex_state = 163}, - [2100] = {.lex_state = 26}, + [2100] = {.lex_state = 163}, [2101] = {.lex_state = 7}, - [2102] = {.lex_state = 163}, + [2102] = {.lex_state = 26}, [2103] = {.lex_state = 7}, [2104] = {.lex_state = 26}, [2105] = {.lex_state = 7}, - [2106] = {.lex_state = 163}, + [2106] = {.lex_state = 26}, [2107] = {.lex_state = 163}, [2108] = {.lex_state = 26}, [2109] = {.lex_state = 163}, - [2110] = {.lex_state = 26}, - [2111] = {.lex_state = 163}, - [2112] = {.lex_state = 163}, + [2110] = {.lex_state = 163}, + [2111] = {.lex_state = 26}, + [2112] = {.lex_state = 26}, [2113] = {.lex_state = 163}, [2114] = {.lex_state = 26}, [2115] = {.lex_state = 163}, - [2116] = {.lex_state = 163}, + [2116] = {.lex_state = 26}, [2117] = {.lex_state = 163}, - [2118] = {.lex_state = 26}, + [2118] = {.lex_state = 163}, [2119] = {.lex_state = 163}, [2120] = {.lex_state = 163}, [2121] = {.lex_state = 163}, [2122] = {.lex_state = 163}, - [2123] = {.lex_state = 26}, - [2124] = {.lex_state = 26}, - [2125] = {.lex_state = 163}, - [2126] = {.lex_state = 163}, - [2127] = {.lex_state = 26}, + [2123] = {.lex_state = 163}, + [2124] = {.lex_state = 163}, + [2125] = {.lex_state = 26}, + [2126] = {.lex_state = 26}, + [2127] = {.lex_state = 163}, [2128] = {.lex_state = 163}, - [2129] = {.lex_state = 163}, + [2129] = {.lex_state = 26}, [2130] = {.lex_state = 163}, [2131] = {.lex_state = 163}, [2132] = {.lex_state = 163}, [2133] = {.lex_state = 163}, - [2134] = {.lex_state = 26}, - [2135] = {.lex_state = 163}, - [2136] = {.lex_state = 163}, - [2137] = {.lex_state = 26}, + [2134] = {.lex_state = 163}, + [2135] = {.lex_state = 6}, + [2136] = {.lex_state = 26}, + [2137] = {.lex_state = 163}, [2138] = {.lex_state = 163}, [2139] = {.lex_state = 26}, - [2140] = {.lex_state = 6}, + [2140] = {.lex_state = 163}, [2141] = {.lex_state = 163}, [2142] = {.lex_state = 26}, - [2143] = {.lex_state = 163}, + [2143] = {.lex_state = 6}, [2144] = {.lex_state = 163}, [2145] = {.lex_state = 163}, - [2146] = {.lex_state = 163}, + [2146] = {.lex_state = 26}, [2147] = {.lex_state = 163}, [2148] = {.lex_state = 163}, [2149] = {.lex_state = 163}, [2150] = {.lex_state = 163}, - [2151] = {.lex_state = 163}, + [2151] = {.lex_state = 26}, [2152] = {.lex_state = 163}, [2153] = {.lex_state = 163}, - [2154] = {.lex_state = 163}, - [2155] = {.lex_state = 163}, - [2156] = {.lex_state = 163}, - [2157] = {.lex_state = 163}, + [2154] = {.lex_state = 26}, + [2155] = {.lex_state = 26}, + [2156] = {.lex_state = 26}, + [2157] = {.lex_state = 26}, [2158] = {.lex_state = 163}, [2159] = {.lex_state = 163}, - [2160] = {.lex_state = 163}, + [2160] = {.lex_state = 26}, [2161] = {.lex_state = 163}, - [2162] = {.lex_state = 163}, - [2163] = {.lex_state = 6}, + [2162] = {.lex_state = 26}, + [2163] = {.lex_state = 163}, [2164] = {.lex_state = 163}, - [2165] = {.lex_state = 26}, + [2165] = {.lex_state = 163}, [2166] = {.lex_state = 163}, - [2167] = {.lex_state = 26}, + [2167] = {.lex_state = 163}, [2168] = {.lex_state = 163}, [2169] = {.lex_state = 26}, - [2170] = {.lex_state = 26}, - [2171] = {.lex_state = 26}, + [2170] = {.lex_state = 163}, + [2171] = {.lex_state = 163}, [2172] = {.lex_state = 163}, [2173] = {.lex_state = 26}, [2174] = {.lex_state = 26}, - [2175] = {.lex_state = 163}, - [2176] = {.lex_state = 26}, - [2177] = {.lex_state = 6}, + [2175] = {.lex_state = 26}, + [2176] = {.lex_state = 163}, + [2177] = {.lex_state = 26}, [2178] = {.lex_state = 163}, - [2179] = {.lex_state = 163}, + [2179] = {.lex_state = 26}, [2180] = {.lex_state = 163}, [2181] = {.lex_state = 26}, [2182] = {.lex_state = 163}, - [2183] = {.lex_state = 26}, - [2184] = {.lex_state = 26}, + [2183] = {.lex_state = 163}, + [2184] = {.lex_state = 163}, [2185] = {.lex_state = 26}, [2186] = {.lex_state = 26}, - [2187] = {.lex_state = 26}, + [2187] = {.lex_state = 163}, [2188] = {.lex_state = 163}, - [2189] = {.lex_state = 163}, - [2190] = {.lex_state = 26}, + [2189] = {.lex_state = 26}, + [2190] = {.lex_state = 163}, [2191] = {.lex_state = 26}, - [2192] = {.lex_state = 26}, - [2193] = {.lex_state = 163}, - [2194] = {.lex_state = 163}, + [2192] = {.lex_state = 163}, + [2193] = {.lex_state = 26}, + [2194] = {.lex_state = 26}, [2195] = {.lex_state = 26}, - [2196] = {.lex_state = 163}, - [2197] = {.lex_state = 26}, - [2198] = {.lex_state = 163}, + [2196] = {.lex_state = 26}, + [2197] = {.lex_state = 163}, + [2198] = {.lex_state = 26}, [2199] = {.lex_state = 163}, - [2200] = {.lex_state = 163}, + [2200] = {.lex_state = 6}, [2201] = {.lex_state = 26}, [2202] = {.lex_state = 163}, [2203] = {.lex_state = 26}, [2204] = {.lex_state = 163}, - [2205] = {.lex_state = 26}, - [2206] = {.lex_state = 26}, + [2205] = {.lex_state = 163}, + [2206] = {.lex_state = 163}, [2207] = {.lex_state = 26}, - [2208] = {.lex_state = 26}, - [2209] = {.lex_state = 26}, + [2208] = {.lex_state = 163}, + [2209] = {.lex_state = 163}, [2210] = {.lex_state = 163}, [2211] = {.lex_state = 163}, - [2212] = {.lex_state = 26}, - [2213] = {.lex_state = 163}, + [2212] = {.lex_state = 163}, + [2213] = {.lex_state = 26}, [2214] = {.lex_state = 163}, [2215] = {.lex_state = 163}, - [2216] = {.lex_state = 26}, + [2216] = {.lex_state = 163}, [2217] = {.lex_state = 163}, - [2218] = {.lex_state = 26}, - [2219] = {.lex_state = 26}, + [2218] = {.lex_state = 163}, + [2219] = {.lex_state = 163}, [2220] = {.lex_state = 26}, - [2221] = {.lex_state = 26}, - [2222] = {.lex_state = 26}, + [2221] = {.lex_state = 163}, + [2222] = {.lex_state = 163}, [2223] = {.lex_state = 163}, - [2224] = {.lex_state = 6}, - [2225] = {.lex_state = 163}, + [2224] = {.lex_state = 163}, + [2225] = {.lex_state = 26}, [2226] = {.lex_state = 163}, [2227] = {.lex_state = 163}, - [2228] = {.lex_state = 163}, + [2228] = {.lex_state = 26}, [2229] = {.lex_state = 163}, [2230] = {.lex_state = 163}, [2231] = {.lex_state = 163}, - [2232] = {.lex_state = 7}, - [2233] = {.lex_state = 163}, + [2232] = {.lex_state = 163}, + [2233] = {.lex_state = 6}, [2234] = {.lex_state = 163}, [2235] = {.lex_state = 163}, - [2236] = {.lex_state = 163}, + [2236] = {.lex_state = 12}, [2237] = {.lex_state = 163}, [2238] = {.lex_state = 163}, [2239] = {.lex_state = 163}, [2240] = {.lex_state = 163}, - [2241] = {.lex_state = 7}, - [2242] = {.lex_state = 34}, + [2241] = {.lex_state = 163}, + [2242] = {.lex_state = 163}, [2243] = {.lex_state = 163}, - [2244] = {.lex_state = 163}, - [2245] = {.lex_state = 7}, - [2246] = {.lex_state = 163}, - [2247] = {.lex_state = 163}, - [2248] = {.lex_state = 163}, + [2244] = {.lex_state = 7}, + [2245] = {.lex_state = 12}, + [2246] = {.lex_state = 7}, + [2247] = {.lex_state = 7}, + [2248] = {.lex_state = 12}, [2249] = {.lex_state = 163}, - [2250] = {.lex_state = 163}, + [2250] = {.lex_state = 7}, [2251] = {.lex_state = 163}, - [2252] = {.lex_state = 7}, - [2253] = {.lex_state = 34}, - [2254] = {.lex_state = 163}, - [2255] = {.lex_state = 163}, + [2252] = {.lex_state = 163}, + [2253] = {.lex_state = 163}, + [2254] = {.lex_state = 34}, + [2255] = {.lex_state = 12}, [2256] = {.lex_state = 163}, [2257] = {.lex_state = 163}, [2258] = {.lex_state = 163}, [2259] = {.lex_state = 163}, - [2260] = {.lex_state = 163}, + [2260] = {.lex_state = 34}, [2261] = {.lex_state = 163}, - [2262] = {.lex_state = 12}, + [2262] = {.lex_state = 163}, [2263] = {.lex_state = 163}, - [2264] = {.lex_state = 34}, - [2265] = {.lex_state = 12}, + [2264] = {.lex_state = 163}, + [2265] = {.lex_state = 163}, [2266] = {.lex_state = 163}, - [2267] = {.lex_state = 12}, + [2267] = {.lex_state = 34}, [2268] = {.lex_state = 163}, [2269] = {.lex_state = 163}, [2270] = {.lex_state = 163}, - [2271] = {.lex_state = 12}, + [2271] = {.lex_state = 163}, [2272] = {.lex_state = 163}, [2273] = {.lex_state = 163}, [2274] = {.lex_state = 163}, - [2275] = {.lex_state = 12}, - [2276] = {.lex_state = 34}, + [2275] = {.lex_state = 163}, + [2276] = {.lex_state = 163}, [2277] = {.lex_state = 163}, [2278] = {.lex_state = 163}, [2279] = {.lex_state = 163}, - [2280] = {.lex_state = 163}, - [2281] = {.lex_state = 12}, + [2280] = {.lex_state = 12}, + [2281] = {.lex_state = 163}, [2282] = {.lex_state = 163}, [2283] = {.lex_state = 163}, [2284] = {.lex_state = 163}, - [2285] = {.lex_state = 163}, + [2285] = {.lex_state = 34}, [2286] = {.lex_state = 163}, [2287] = {.lex_state = 163}, - [2288] = {.lex_state = 12}, - [2289] = {.lex_state = 12}, - [2290] = {.lex_state = 163}, + [2288] = {.lex_state = 163}, + [2289] = {.lex_state = 163}, + [2290] = {.lex_state = 12}, [2291] = {.lex_state = 163}, [2292] = {.lex_state = 163}, [2293] = {.lex_state = 163}, - [2294] = {.lex_state = 34}, - [2295] = {.lex_state = 34}, + [2294] = {.lex_state = 163}, + [2295] = {.lex_state = 163}, [2296] = {.lex_state = 163}, - [2297] = {.lex_state = 163}, + [2297] = {.lex_state = 12}, [2298] = {.lex_state = 163}, - [2299] = {.lex_state = 163}, + [2299] = {.lex_state = 34}, [2300] = {.lex_state = 163}, [2301] = {.lex_state = 163}, [2302] = {.lex_state = 163}, [2303] = {.lex_state = 163}, [2304] = {.lex_state = 163}, - [2305] = {.lex_state = 7}, + [2305] = {.lex_state = 12}, [2306] = {.lex_state = 163}, - [2307] = {.lex_state = 163}, + [2307] = {.lex_state = 34}, [2308] = {.lex_state = 163}, [2309] = {.lex_state = 163}, [2310] = {.lex_state = 163}, [2311] = {.lex_state = 163}, [2312] = {.lex_state = 163}, - [2313] = {.lex_state = 163}, + [2313] = {.lex_state = 7}, [2314] = {.lex_state = 163}, - [2315] = {.lex_state = 6}, - [2316] = {.lex_state = 163}, + [2315] = {.lex_state = 163}, + [2316] = {.lex_state = 386}, [2317] = {.lex_state = 163}, [2318] = {.lex_state = 163}, [2319] = {.lex_state = 163}, @@ -10066,19 +10091,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2322] = {.lex_state = 163}, [2323] = {.lex_state = 163}, [2324] = {.lex_state = 163}, - [2325] = {.lex_state = 12}, + [2325] = {.lex_state = 386}, [2326] = {.lex_state = 163}, [2327] = {.lex_state = 163}, [2328] = {.lex_state = 163}, [2329] = {.lex_state = 163}, [2330] = {.lex_state = 163}, - [2331] = {.lex_state = 163}, + [2331] = {.lex_state = 386}, [2332] = {.lex_state = 163}, - [2333] = {.lex_state = 6}, + [2333] = {.lex_state = 386}, [2334] = {.lex_state = 163}, [2335] = {.lex_state = 163}, [2336] = {.lex_state = 163}, - [2337] = {.lex_state = 163}, + [2337] = {.lex_state = 6}, [2338] = {.lex_state = 163}, [2339] = {.lex_state = 163}, [2340] = {.lex_state = 163}, @@ -10088,7 +10113,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2344] = {.lex_state = 163}, [2345] = {.lex_state = 163}, [2346] = {.lex_state = 163}, - [2347] = {.lex_state = 163}, + [2347] = {.lex_state = 12}, [2348] = {.lex_state = 163}, [2349] = {.lex_state = 163}, [2350] = {.lex_state = 163}, @@ -10096,14 +10121,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2352] = {.lex_state = 163}, [2353] = {.lex_state = 163}, [2354] = {.lex_state = 163}, - [2355] = {.lex_state = 163}, + [2355] = {.lex_state = 386}, [2356] = {.lex_state = 163}, [2357] = {.lex_state = 163}, [2358] = {.lex_state = 163}, [2359] = {.lex_state = 163}, [2360] = {.lex_state = 163}, [2361] = {.lex_state = 163}, - [2362] = {.lex_state = 163}, + [2362] = {.lex_state = 6}, [2363] = {.lex_state = 163}, [2364] = {.lex_state = 163}, [2365] = {.lex_state = 163}, @@ -10143,6 +10168,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2399] = {.lex_state = 163}, [2400] = {.lex_state = 163}, [2401] = {.lex_state = 163}, + [2402] = {.lex_state = 386}, + [2403] = {.lex_state = 163}, + [2404] = {.lex_state = 163}, + [2405] = {.lex_state = 163}, + [2406] = {.lex_state = 163}, + [2407] = {.lex_state = 163}, + [2408] = {.lex_state = 163}, + [2409] = {.lex_state = 163}, + [2410] = {.lex_state = 163}, + [2411] = {.lex_state = 163}, + [2412] = {.lex_state = 163}, + [2413] = {.lex_state = 163}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -10277,21 +10314,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token4] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), [aux_sym_STRINGLITERALSINGLE_token2] = ACTIONS(1), - [aux_sym_LINESTRING_token1] = ACTIONS(1), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1), [aux_sym_IDENTIFIER_token1] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(2359), - [aux_sym__ContainerMembers] = STATE(1849), - [sym__ContainerDeclarations] = STATE(1849), - [sym_TestDecl] = STATE(1849), - [sym_TopLevelComptime] = STATE(1849), - [sym_TopLevelDecl] = STATE(1849), - [sym_FnProto] = STATE(2111), + [sym_source_file] = STATE(2371), + [aux_sym__ContainerMembers] = STATE(1857), + [sym__ContainerDeclarations] = STATE(1857), + [sym_TestDecl] = STATE(1857), + [sym_TopLevelComptime] = STATE(1857), + [sym_TopLevelDecl] = STATE(1857), + [sym_FnProto] = STATE(2113), [sym_VarDecl] = STATE(1895), - [sym_ContainerField] = STATE(1881), - [sym_IDENTIFIER] = STATE(1867), + [sym_ContainerField] = STATE(1887), + [sym_IDENTIFIER] = STATE(1877), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_pub] = ACTIONS(7), [anon_sym_test] = ACTIONS(9), @@ -10312,7 +10349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(33), }, [2] = { - [sym_FnProto] = STATE(719), + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(886), [sym_BinaryExpr] = STATE(886), [sym_UnaryExpr] = STATE(886), @@ -10320,45 +10357,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(886), [sym_Block] = STATE(886), [sym_LoopExpr] = STATE(886), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(886), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(886), [sym_BreakLabel] = STATE(4), - [sym_BlockLabel] = STATE(1911), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), @@ -10464,58 +10501,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [3] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(922), - [sym_BinaryExpr] = STATE(922), - [sym_UnaryExpr] = STATE(922), - [sym__PrimaryExpr] = STATE(922), - [sym_IfExpr] = STATE(922), - [sym_Block] = STATE(922), - [sym_LoopExpr] = STATE(922), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(922), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(907), + [sym_BinaryExpr] = STATE(907), + [sym_UnaryExpr] = STATE(907), + [sym__PrimaryExpr] = STATE(907), + [sym_IfExpr] = STATE(907), + [sym_Block] = STATE(907), + [sym_LoopExpr] = STATE(907), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(907), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(922), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(907), [sym_BreakLabel] = STATE(6), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), @@ -10620,57 +10657,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [4] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(899), - [sym_BinaryExpr] = STATE(899), - [sym_UnaryExpr] = STATE(899), - [sym__PrimaryExpr] = STATE(899), - [sym_IfExpr] = STATE(899), - [sym_Block] = STATE(899), - [sym_LoopExpr] = STATE(899), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(899), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(882), + [sym_BinaryExpr] = STATE(882), + [sym_UnaryExpr] = STATE(882), + [sym__PrimaryExpr] = STATE(882), + [sym_IfExpr] = STATE(882), + [sym_Block] = STATE(882), + [sym_LoopExpr] = STATE(882), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(882), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(899), - [sym_BlockLabel] = STATE(1911), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(882), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(129), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), @@ -10775,12 +10812,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [5] = { - [sym_FnProto] = STATE(719), + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(886), [sym_BinaryExpr] = STATE(886), [sym_UnaryExpr] = STATE(886), @@ -10788,44 +10825,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(886), [sym_Block] = STATE(886), [sym_LoopExpr] = STATE(886), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(886), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(886), - [sym_BlockLabel] = STATE(1911), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), @@ -10930,57 +10967,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [6] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(916), - [sym_BinaryExpr] = STATE(916), - [sym_UnaryExpr] = STATE(916), - [sym__PrimaryExpr] = STATE(916), - [sym_IfExpr] = STATE(916), - [sym_Block] = STATE(916), - [sym_LoopExpr] = STATE(916), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(916), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(909), + [sym_BinaryExpr] = STATE(909), + [sym_UnaryExpr] = STATE(909), + [sym__PrimaryExpr] = STATE(909), + [sym_IfExpr] = STATE(909), + [sym_Block] = STATE(909), + [sym_LoopExpr] = STATE(909), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(909), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(916), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(909), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(129), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), @@ -11084,57 +11121,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [7] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(922), - [sym_BinaryExpr] = STATE(922), - [sym_UnaryExpr] = STATE(922), - [sym__PrimaryExpr] = STATE(922), - [sym_IfExpr] = STATE(922), - [sym_Block] = STATE(922), - [sym_LoopExpr] = STATE(922), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(922), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(907), + [sym_BinaryExpr] = STATE(907), + [sym_UnaryExpr] = STATE(907), + [sym__PrimaryExpr] = STATE(907), + [sym_IfExpr] = STATE(907), + [sym_Block] = STATE(907), + [sym_LoopExpr] = STATE(907), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(907), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(922), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(907), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), @@ -11238,58 +11275,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [8] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1218), - [sym_BinaryExpr] = STATE(1218), - [sym_UnaryExpr] = STATE(1218), - [sym__PrimaryExpr] = STATE(1218), - [sym_IfExpr] = STATE(1218), - [sym_Block] = STATE(1218), - [sym_LoopExpr] = STATE(1218), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1218), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1218), - [sym_BreakLabel] = STATE(11), - [sym_BlockLabel] = STATE(1907), + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1221), + [sym_BinaryExpr] = STATE(1221), + [sym_UnaryExpr] = STATE(1221), + [sym__PrimaryExpr] = STATE(1221), + [sym_IfExpr] = STATE(1221), + [sym_Block] = STATE(1221), + [sym_LoopExpr] = STATE(1221), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1221), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1221), + [sym_BreakLabel] = STATE(10), + [sym_BlockLabel] = STATE(1920), [sym_IfPrefix] = STATE(321), [sym_WhilePrefix] = STATE(322), [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), [ts_builtin_sym_end] = ACTIONS(35), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_pub] = ACTIONS(49), @@ -11382,58 +11419,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), [aux_sym_IDENTIFIER_token1] = ACTIONS(49), [anon_sym_AT] = ACTIONS(35), }, [9] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1240), - [sym_BinaryExpr] = STATE(1240), - [sym_UnaryExpr] = STATE(1240), - [sym__PrimaryExpr] = STATE(1240), - [sym_IfExpr] = STATE(1240), - [sym_Block] = STATE(1240), - [sym_LoopExpr] = STATE(1240), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1240), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1240), + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1234), + [sym_BinaryExpr] = STATE(1234), + [sym_UnaryExpr] = STATE(1234), + [sym__PrimaryExpr] = STATE(1234), + [sym_IfExpr] = STATE(1234), + [sym_Block] = STATE(1234), + [sym_LoopExpr] = STATE(1234), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1234), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1234), [sym_BreakLabel] = STATE(12), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), [ts_builtin_sym_end] = ACTIONS(35), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_pub] = ACTIONS(49), @@ -11525,199 +11562,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), [aux_sym_IDENTIFIER_token1] = ACTIONS(49), [anon_sym_AT] = ACTIONS(35), }, [10] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1218), - [sym_BinaryExpr] = STATE(1218), - [sym_UnaryExpr] = STATE(1218), - [sym__PrimaryExpr] = STATE(1218), - [sym_IfExpr] = STATE(1218), - [sym_Block] = STATE(1218), - [sym_LoopExpr] = STATE(1218), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1218), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1218), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [ts_builtin_sym_end] = ACTIONS(35), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(49), - [anon_sym_test] = ACTIONS(49), - [anon_sym_comptime] = ACTIONS(49), - [anon_sym_export] = ACTIONS(49), - [anon_sym_extern] = ACTIONS(49), - [anon_sym_inline] = ACTIONS(49), - [anon_sym_noinline] = ACTIONS(49), - [anon_sym_threadlocal] = ACTIONS(49), - [anon_sym_usingnamespace] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(49), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_const] = ACTIONS(49), - [anon_sym_var] = ACTIONS(49), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_else] = ACTIONS(49), - [anon_sym_or] = ACTIONS(49), - [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(49), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_orelse] = ACTIONS(49), - [anon_sym_catch] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_PIPE] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_PLUS_PERCENT] = ACTIONS(35), - [anon_sym_DASH_PERCENT] = ACTIONS(35), - [anon_sym_PLUS_PIPE] = ACTIONS(35), - [anon_sym_DASH_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_STAR_PERCENT] = ACTIONS(35), - [anon_sym_STAR_PIPE] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_doc_comment] = ACTIONS(35), - [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(49), - [anon_sym_AT] = ACTIONS(35), - }, - [11] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1209), - [sym_BinaryExpr] = STATE(1209), - [sym_UnaryExpr] = STATE(1209), - [sym__PrimaryExpr] = STATE(1209), - [sym_IfExpr] = STATE(1209), - [sym_Block] = STATE(1209), - [sym_LoopExpr] = STATE(1209), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1209), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1209), - [sym_BlockLabel] = STATE(1907), + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1222), + [sym_BinaryExpr] = STATE(1222), + [sym_UnaryExpr] = STATE(1222), + [sym__PrimaryExpr] = STATE(1222), + [sym_IfExpr] = STATE(1222), + [sym_Block] = STATE(1222), + [sym_LoopExpr] = STATE(1222), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1222), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1222), + [sym_BlockLabel] = STATE(1920), [sym_IfPrefix] = STATE(321), [sym_WhilePrefix] = STATE(322), [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), [ts_builtin_sym_end] = ACTIONS(129), [anon_sym_COMMA] = ACTIONS(129), [anon_sym_pub] = ACTIONS(131), @@ -11809,57 +11704,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), [aux_sym_IDENTIFIER_token1] = ACTIONS(131), [anon_sym_AT] = ACTIONS(129), }, + [11] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1221), + [sym_BinaryExpr] = STATE(1221), + [sym_UnaryExpr] = STATE(1221), + [sym__PrimaryExpr] = STATE(1221), + [sym_IfExpr] = STATE(1221), + [sym_Block] = STATE(1221), + [sym_LoopExpr] = STATE(1221), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1221), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1221), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [ts_builtin_sym_end] = ACTIONS(35), + [anon_sym_COMMA] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(49), + [anon_sym_test] = ACTIONS(49), + [anon_sym_comptime] = ACTIONS(49), + [anon_sym_export] = ACTIONS(49), + [anon_sym_extern] = ACTIONS(49), + [anon_sym_inline] = ACTIONS(49), + [anon_sym_noinline] = ACTIONS(49), + [anon_sym_threadlocal] = ACTIONS(49), + [anon_sym_usingnamespace] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_const] = ACTIONS(49), + [anon_sym_var] = ACTIONS(49), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_else] = ACTIONS(49), + [anon_sym_or] = ACTIONS(49), + [anon_sym_and] = ACTIONS(49), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_RBRACE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(49), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(49), + [anon_sym_GT] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(35), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_orelse] = ACTIONS(49), + [anon_sym_catch] = ACTIONS(49), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_PIPE] = ACTIONS(35), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_PLUS_PERCENT] = ACTIONS(35), + [anon_sym_DASH_PERCENT] = ACTIONS(35), + [anon_sym_PLUS_PIPE] = ACTIONS(35), + [anon_sym_DASH_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(49), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_STAR_PERCENT] = ACTIONS(35), + [anon_sym_STAR_PIPE] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_doc_comment] = ACTIONS(35), + [sym_line_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(35), + }, [12] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1224), - [sym_BinaryExpr] = STATE(1224), - [sym_UnaryExpr] = STATE(1224), - [sym__PrimaryExpr] = STATE(1224), - [sym_IfExpr] = STATE(1224), - [sym_Block] = STATE(1224), - [sym_LoopExpr] = STATE(1224), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1224), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1224), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1243), + [sym_BinaryExpr] = STATE(1243), + [sym_UnaryExpr] = STATE(1243), + [sym__PrimaryExpr] = STATE(1243), + [sym_IfExpr] = STATE(1243), + [sym_Block] = STATE(1243), + [sym_LoopExpr] = STATE(1243), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1243), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1243), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), [ts_builtin_sym_end] = ACTIONS(129), [anon_sym_COMMA] = ACTIONS(129), [anon_sym_pub] = ACTIONS(131), @@ -11950,57 +11987,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), [aux_sym_IDENTIFIER_token1] = ACTIONS(131), [anon_sym_AT] = ACTIONS(129), }, [13] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1240), - [sym_BinaryExpr] = STATE(1240), - [sym_UnaryExpr] = STATE(1240), - [sym__PrimaryExpr] = STATE(1240), - [sym_IfExpr] = STATE(1240), - [sym_Block] = STATE(1240), - [sym_LoopExpr] = STATE(1240), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1240), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1240), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1234), + [sym_BinaryExpr] = STATE(1234), + [sym_UnaryExpr] = STATE(1234), + [sym__PrimaryExpr] = STATE(1234), + [sym_IfExpr] = STATE(1234), + [sym_Block] = STATE(1234), + [sym_LoopExpr] = STATE(1234), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1234), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1234), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), [ts_builtin_sym_end] = ACTIONS(35), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_pub] = ACTIONS(49), @@ -12091,58 +12128,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), [aux_sym_IDENTIFIER_token1] = ACTIONS(49), [anon_sym_AT] = ACTIONS(35), }, [14] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1480), - [sym_BinaryExpr] = STATE(1480), - [sym_UnaryExpr] = STATE(1480), - [sym__PrimaryExpr] = STATE(1480), - [sym_IfExpr] = STATE(1480), - [sym_Block] = STATE(1480), - [sym_LoopExpr] = STATE(1480), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1480), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1469), + [sym_BinaryExpr] = STATE(1469), + [sym_UnaryExpr] = STATE(1469), + [sym__PrimaryExpr] = STATE(1469), + [sym_IfExpr] = STATE(1469), + [sym_Block] = STATE(1469), + [sym_LoopExpr] = STATE(1469), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1469), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1480), - [sym_BreakLabel] = STATE(17), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1469), + [sym_BreakLabel] = STATE(18), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_COMMA] = ACTIONS(35), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), @@ -12226,74 +12263,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [15] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1520), - [sym_BinaryExpr] = STATE(1520), - [sym_UnaryExpr] = STATE(1520), - [sym__PrimaryExpr] = STATE(1520), - [sym_IfExpr] = STATE(1520), - [sym_Block] = STATE(1520), - [sym_LoopExpr] = STATE(1520), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1520), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1464), + [sym_BinaryExpr] = STATE(1464), + [sym_UnaryExpr] = STATE(1464), + [sym__PrimaryExpr] = STATE(1464), + [sym_IfExpr] = STATE(1464), + [sym_Block] = STATE(1464), + [sym_LoopExpr] = STATE(1464), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1464), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1464), + [sym_BreakLabel] = STATE(20), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_COLON] = ACTIONS(35), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_else] = ACTIONS(49), + [anon_sym_or] = ACTIONS(49), + [anon_sym_and] = ACTIONS(49), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(35), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(49), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(49), + [anon_sym_GT] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(35), + [anon_sym_CARET] = ACTIONS(35), + [anon_sym_orelse] = ACTIONS(49), + [anon_sym_catch] = ACTIONS(49), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_PIPE] = ACTIONS(35), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_PLUS_PERCENT] = ACTIONS(35), + [anon_sym_DASH_PERCENT] = ACTIONS(35), + [anon_sym_PLUS_PIPE] = ACTIONS(35), + [anon_sym_DASH_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(49), + [anon_sym_PERCENT] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_STAR_PERCENT] = ACTIONS(35), + [anon_sym_STAR_PIPE] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [16] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1516), + [sym_BinaryExpr] = STATE(1516), + [sym_UnaryExpr] = STATE(1516), + [sym__PrimaryExpr] = STATE(1516), + [sym_IfExpr] = STATE(1516), + [sym_Block] = STATE(1516), + [sym_LoopExpr] = STATE(1516), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1516), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1520), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1516), [sym_BreakLabel] = STATE(25), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_comptime] = ACTIONS(269), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_COLON] = ACTIONS(275), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_COLON] = ACTIONS(293), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(239), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -12360,75 +12531,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [16] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1469), - [sym_BinaryExpr] = STATE(1469), - [sym_UnaryExpr] = STATE(1469), - [sym__PrimaryExpr] = STATE(1469), - [sym_IfExpr] = STATE(1469), - [sym_Block] = STATE(1469), - [sym_LoopExpr] = STATE(1469), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1469), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [17] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1523), + [sym_BinaryExpr] = STATE(1523), + [sym_UnaryExpr] = STATE(1523), + [sym__PrimaryExpr] = STATE(1523), + [sym_IfExpr] = STATE(1523), + [sym_Block] = STATE(1523), + [sym_LoopExpr] = STATE(1523), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1523), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1469), - [sym_BreakLabel] = STATE(19), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1523), + [sym_BreakLabel] = STATE(22), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(45), [anon_sym_COLON] = ACTIONS(35), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_else] = ACTIONS(49), + [anon_sym_nosuspend] = ACTIONS(309), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(295), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -12494,57 +12664,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [17] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1460), - [sym_BinaryExpr] = STATE(1460), - [sym_UnaryExpr] = STATE(1460), - [sym__PrimaryExpr] = STATE(1460), - [sym_IfExpr] = STATE(1460), - [sym_Block] = STATE(1460), - [sym_LoopExpr] = STATE(1460), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1460), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [18] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1463), + [sym_BinaryExpr] = STATE(1463), + [sym_UnaryExpr] = STATE(1463), + [sym__PrimaryExpr] = STATE(1463), + [sym_IfExpr] = STATE(1463), + [sym_Block] = STATE(1463), + [sym_LoopExpr] = STATE(1463), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1463), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1460), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1463), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_COMMA] = ACTIONS(129), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), @@ -12627,94 +12797,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [18] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1480), - [sym_BinaryExpr] = STATE(1480), - [sym_UnaryExpr] = STATE(1480), - [sym__PrimaryExpr] = STATE(1480), - [sym_IfExpr] = STATE(1480), - [sym_Block] = STATE(1480), - [sym_LoopExpr] = STATE(1480), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1480), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1480), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [19] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1464), + [sym_BinaryExpr] = STATE(1464), + [sym_UnaryExpr] = STATE(1464), + [sym__PrimaryExpr] = STATE(1464), + [sym_IfExpr] = STATE(1464), + [sym_Block] = STATE(1464), + [sym_LoopExpr] = STATE(1464), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1464), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1464), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_COLON] = ACTIONS(35), + [anon_sym_nosuspend] = ACTIONS(275), [anon_sym_else] = ACTIONS(49), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(239), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(35), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_DOT_DOT_DOT] = ACTIONS(35), + [anon_sym_RBRACK] = ACTIONS(35), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), [anon_sym_PIPE] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(49), - [anon_sym_EQ_GT] = ACTIONS(35), [anon_sym_EQ_EQ] = ACTIONS(35), [anon_sym_BANG_EQ] = ACTIONS(35), [anon_sym_LT] = ACTIONS(49), @@ -12750,22 +12920,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [19] = { - [sym_FnProto] = STATE(719), + [20] = { + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(1467), [sym_BinaryExpr] = STATE(1467), [sym_UnaryExpr] = STATE(1467), @@ -12773,61 +12943,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1467), [sym_Block] = STATE(1467), [sym_LoopExpr] = STATE(1467), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(1467), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(1467), - [sym_BlockLabel] = STATE(1910), + [sym_BlockLabel] = STATE(1916), [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), + [sym_WhilePrefix] = STATE(314), [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(45), [anon_sym_COLON] = ACTIONS(129), - [anon_sym_nosuspend] = ACTIONS(291), + [anon_sym_nosuspend] = ACTIONS(275), [anon_sym_else] = ACTIONS(131), [anon_sym_or] = ACTIONS(131), [anon_sym_and] = ACTIONS(131), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(303), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(319), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -12893,145 +13063,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [20] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1519), - [sym_BinaryExpr] = STATE(1519), - [sym_UnaryExpr] = STATE(1519), - [sym__PrimaryExpr] = STATE(1519), - [sym_IfExpr] = STATE(1519), - [sym_Block] = STATE(1519), - [sym_LoopExpr] = STATE(1519), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1519), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1519), - [sym_BreakLabel] = STATE(22), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_COLON] = ACTIONS(35), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_or] = ACTIONS(49), - [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(49), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(35), - [anon_sym_CARET] = ACTIONS(35), - [anon_sym_orelse] = ACTIONS(49), - [anon_sym_catch] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_LT_LT_PIPE] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_PLUS_PERCENT] = ACTIONS(35), - [anon_sym_DASH_PERCENT] = ACTIONS(35), - [anon_sym_PLUS_PIPE] = ACTIONS(35), - [anon_sym_DASH_PIPE] = ACTIONS(35), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PERCENT] = ACTIONS(35), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_STAR_PERCENT] = ACTIONS(35), - [anon_sym_STAR_PIPE] = ACTIONS(35), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [21] = { - [sym_FnProto] = STATE(719), + [sym_FnProto] = STATE(1296), [sym__Expr] = STATE(1469), [sym_BinaryExpr] = STATE(1469), [sym_UnaryExpr] = STATE(1469), @@ -13039,81 +13076,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1469), [sym_Block] = STATE(1469), [sym_LoopExpr] = STATE(1469), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), [sym__CurlySuffixExpr] = STATE(1469), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), [sym_AsmExpr] = STATE(1469), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_COMMA] = ACTIONS(35), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_COLON] = ACTIONS(35), - [anon_sym_nosuspend] = ACTIONS(291), + [anon_sym_nosuspend] = ACTIONS(227), [anon_sym_else] = ACTIONS(49), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(295), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(239), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(35), + [anon_sym_DOT_DOT_DOT] = ACTIONS(35), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), [anon_sym_PIPE] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(49), + [anon_sym_EQ_GT] = ACTIONS(35), [anon_sym_EQ_EQ] = ACTIONS(35), [anon_sym_BANG_EQ] = ACTIONS(35), [anon_sym_LT] = ACTIONS(49), @@ -13149,83 +13186,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [22] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1527), - [sym_BinaryExpr] = STATE(1527), - [sym_UnaryExpr] = STATE(1527), - [sym__PrimaryExpr] = STATE(1527), - [sym_IfExpr] = STATE(1527), - [sym_Block] = STATE(1527), - [sym_LoopExpr] = STATE(1527), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1527), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1513), + [sym_BinaryExpr] = STATE(1513), + [sym_UnaryExpr] = STATE(1513), + [sym__PrimaryExpr] = STATE(1513), + [sym_IfExpr] = STATE(1513), + [sym_Block] = STATE(1513), + [sym_LoopExpr] = STATE(1513), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1513), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1527), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1513), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(45), [anon_sym_COLON] = ACTIONS(129), - [anon_sym_nosuspend] = ACTIONS(311), + [anon_sym_nosuspend] = ACTIONS(309), [anon_sym_or] = ACTIONS(131), [anon_sym_and] = ACTIONS(131), - [anon_sym_break] = ACTIONS(313), + [anon_sym_break] = ACTIONS(311), [anon_sym_continue] = ACTIONS(321), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -13291,72 +13328,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [23] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1520), - [sym_BinaryExpr] = STATE(1520), - [sym_UnaryExpr] = STATE(1520), - [sym__PrimaryExpr] = STATE(1520), - [sym_IfExpr] = STATE(1520), - [sym_Block] = STATE(1520), - [sym_LoopExpr] = STATE(1520), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1520), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1516), + [sym_BinaryExpr] = STATE(1516), + [sym_UnaryExpr] = STATE(1516), + [sym__PrimaryExpr] = STATE(1516), + [sym_IfExpr] = STATE(1516), + [sym_Block] = STATE(1516), + [sym_LoopExpr] = STATE(1516), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1516), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1520), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1516), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_comptime] = ACTIONS(269), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(239), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -13423,73 +13460,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [24] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1519), - [sym_BinaryExpr] = STATE(1519), - [sym_UnaryExpr] = STATE(1519), - [sym__PrimaryExpr] = STATE(1519), - [sym_IfExpr] = STATE(1519), - [sym_Block] = STATE(1519), - [sym_LoopExpr] = STATE(1519), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1519), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1523), + [sym_BinaryExpr] = STATE(1523), + [sym_UnaryExpr] = STATE(1523), + [sym__PrimaryExpr] = STATE(1523), + [sym_IfExpr] = STATE(1523), + [sym_Block] = STATE(1523), + [sym_LoopExpr] = STATE(1523), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1523), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1519), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1523), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(45), [anon_sym_COLON] = ACTIONS(35), - [anon_sym_nosuspend] = ACTIONS(311), + [anon_sym_nosuspend] = ACTIONS(309), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -13555,72 +13592,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [25] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1497), - [sym_BinaryExpr] = STATE(1497), - [sym_UnaryExpr] = STATE(1497), - [sym__PrimaryExpr] = STATE(1497), - [sym_IfExpr] = STATE(1497), - [sym_Block] = STATE(1497), - [sym_LoopExpr] = STATE(1497), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1497), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1504), + [sym_BinaryExpr] = STATE(1504), + [sym_UnaryExpr] = STATE(1504), + [sym__PrimaryExpr] = STATE(1504), + [sym_IfExpr] = STATE(1504), + [sym_Block] = STATE(1504), + [sym_LoopExpr] = STATE(1504), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1504), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1497), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1504), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_COMMA] = ACTIONS(129), - [anon_sym_comptime] = ACTIONS(269), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(45), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_or] = ACTIONS(131), [anon_sym_and] = ACTIONS(131), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(239), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -13687,66 +13724,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [26] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(45), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(31), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(45), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(31), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -13765,7 +13802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -13806,66 +13843,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [27] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(36), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(36), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(345), + [anon_sym_extern] = ACTIONS(348), + [anon_sym_inline] = ACTIONS(351), + [anon_sym_fn] = ACTIONS(354), + [anon_sym_BANG] = ACTIONS(357), + [anon_sym_const] = ACTIONS(360), + [anon_sym_var] = ACTIONS(360), + [anon_sym_nosuspend] = ACTIONS(363), + [anon_sym_defer] = ACTIONS(366), + [anon_sym_suspend] = ACTIONS(366), + [anon_sym_errdefer] = ACTIONS(369), + [anon_sym_break] = ACTIONS(372), + [anon_sym_continue] = ACTIONS(375), + [anon_sym_resume] = ACTIONS(378), + [anon_sym_return] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_RBRACE] = ACTIONS(387), + [anon_sym_async] = ACTIONS(389), + [anon_sym_DOT] = ACTIONS(392), + [anon_sym_error] = ACTIONS(395), + [anon_sym_false] = ACTIONS(398), + [anon_sym_null] = ACTIONS(398), + [anon_sym_anyframe] = ACTIONS(401), + [anon_sym_true] = ACTIONS(398), + [anon_sym_undefined] = ACTIONS(398), + [anon_sym_unreachable] = ACTIONS(398), + [sym_BuildinTypeExpr] = ACTIONS(398), + [anon_sym_packed] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(404), + [anon_sym_switch] = ACTIONS(407), + [anon_sym_asm] = ACTIONS(410), + [anon_sym_LBRACK] = ACTIONS(413), + [anon_sym_if] = ACTIONS(416), + [anon_sym_while] = ACTIONS(419), + [anon_sym_for] = ACTIONS(422), + [anon_sym_STAR] = ACTIONS(425), + [anon_sym_AMP] = ACTIONS(357), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_DASH_PERCENT] = ACTIONS(357), + [anon_sym_STAR_STAR] = ACTIONS(431), + [anon_sym_TILDE] = ACTIONS(357), + [anon_sym_try] = ACTIONS(428), + [anon_sym_await] = ACTIONS(428), + [anon_sym_QMARK] = ACTIONS(434), + [anon_sym_struct] = ACTIONS(437), + [anon_sym_opaque] = ACTIONS(437), + [anon_sym_enum] = ACTIONS(440), + [anon_sym_union] = ACTIONS(443), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(446), + [aux_sym_FLOAT_token1] = ACTIONS(449), + [aux_sym_FLOAT_token2] = ACTIONS(449), + [aux_sym_FLOAT_token3] = ACTIONS(449), + [aux_sym_FLOAT_token4] = ACTIONS(449), + [aux_sym_INTEGER_token1] = ACTIONS(452), + [aux_sym_INTEGER_token2] = ACTIONS(452), + [aux_sym_INTEGER_token3] = ACTIONS(455), + [aux_sym_INTEGER_token4] = ACTIONS(455), + [anon_sym_DQUOTE] = ACTIONS(458), + [anon_sym_BSLASH_BSLASH] = ACTIONS(461), + [aux_sym_IDENTIFIER_token1] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(467), + }, + [28] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(899), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_Payload] = STATE(46), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -13882,9 +14038,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(345), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -13901,6 +14056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(470), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -13925,66 +14081,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [28] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(31), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [29] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(34), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(31), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(34), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14001,9 +14157,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_RBRACE] = ACTIONS(472), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14044,66 +14200,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [29] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(877), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [30] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(38), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_Payload] = STATE(46), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(38), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14120,8 +14276,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14138,7 +14295,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(349), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -14163,66 +14319,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [30] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(33), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [31] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(33), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14239,9 +14395,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(351), + [anon_sym_RBRACE] = ACTIONS(476), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14282,66 +14438,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [31] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [32] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(36), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(36), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14358,9 +14514,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(353), + [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14401,66 +14557,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [32] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(34), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [33] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(44), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(34), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(44), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14477,9 +14633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14520,66 +14676,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [33] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [34] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14596,9 +14752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14639,66 +14795,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [34] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [35] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(37), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(37), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14715,9 +14871,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(359), + [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14758,66 +14914,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [35] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(40), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [36] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(40), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14834,9 +14990,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14877,66 +15033,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [36] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [37] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -14953,9 +15109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(363), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -14996,66 +15152,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [37] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [38] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -15072,9 +15228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(365), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -15115,66 +15271,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [38] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [39] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(45), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(45), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -15191,9 +15347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -15234,66 +15390,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [39] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), + [40] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), [sym_Statement] = STATE(41), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym_Block_repeat1] = STATE(41), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -15310,9 +15466,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -15353,66 +15509,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [40] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), + [41] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(323), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(325), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_const] = ACTIONS(327), + [anon_sym_var] = ACTIONS(327), + [anon_sym_nosuspend] = ACTIONS(329), + [anon_sym_defer] = ACTIONS(331), + [anon_sym_suspend] = ACTIONS(331), + [anon_sym_errdefer] = ACTIONS(333), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [42] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(323), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(325), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_const] = ACTIONS(327), + [anon_sym_var] = ACTIONS(327), + [anon_sym_nosuspend] = ACTIONS(329), + [anon_sym_defer] = ACTIONS(331), + [anon_sym_suspend] = ACTIONS(331), + [anon_sym_errdefer] = ACTIONS(333), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(339), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [43] = { + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -15429,9 +15823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(371), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -15472,423 +15866,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [41] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(323), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(325), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_const] = ACTIONS(327), - [anon_sym_var] = ACTIONS(327), - [anon_sym_nosuspend] = ACTIONS(329), - [anon_sym_defer] = ACTIONS(331), - [anon_sym_suspend] = ACTIONS(331), - [anon_sym_errdefer] = ACTIONS(333), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(339), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [42] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(375), - [anon_sym_extern] = ACTIONS(378), - [anon_sym_inline] = ACTIONS(381), - [anon_sym_fn] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(387), - [anon_sym_const] = ACTIONS(390), - [anon_sym_var] = ACTIONS(390), - [anon_sym_nosuspend] = ACTIONS(393), - [anon_sym_defer] = ACTIONS(396), - [anon_sym_suspend] = ACTIONS(396), - [anon_sym_errdefer] = ACTIONS(399), - [anon_sym_break] = ACTIONS(402), - [anon_sym_continue] = ACTIONS(405), - [anon_sym_resume] = ACTIONS(408), - [anon_sym_return] = ACTIONS(411), - [anon_sym_LBRACE] = ACTIONS(414), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_async] = ACTIONS(419), - [anon_sym_DOT] = ACTIONS(422), - [anon_sym_error] = ACTIONS(425), - [anon_sym_false] = ACTIONS(428), - [anon_sym_null] = ACTIONS(428), - [anon_sym_anyframe] = ACTIONS(431), - [anon_sym_true] = ACTIONS(428), - [anon_sym_undefined] = ACTIONS(428), - [anon_sym_unreachable] = ACTIONS(428), - [sym_BuildinTypeExpr] = ACTIONS(428), - [anon_sym_packed] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(434), - [anon_sym_switch] = ACTIONS(437), - [anon_sym_asm] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(443), - [anon_sym_if] = ACTIONS(446), - [anon_sym_while] = ACTIONS(449), - [anon_sym_for] = ACTIONS(452), - [anon_sym_STAR] = ACTIONS(455), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(458), - [anon_sym_DASH_PERCENT] = ACTIONS(387), - [anon_sym_STAR_STAR] = ACTIONS(461), - [anon_sym_TILDE] = ACTIONS(387), - [anon_sym_try] = ACTIONS(458), - [anon_sym_await] = ACTIONS(458), - [anon_sym_QMARK] = ACTIONS(464), - [anon_sym_struct] = ACTIONS(467), - [anon_sym_opaque] = ACTIONS(467), - [anon_sym_enum] = ACTIONS(470), - [anon_sym_union] = ACTIONS(473), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(476), - [aux_sym_FLOAT_token1] = ACTIONS(479), - [aux_sym_FLOAT_token2] = ACTIONS(479), - [aux_sym_FLOAT_token3] = ACTIONS(479), - [aux_sym_FLOAT_token4] = ACTIONS(479), - [aux_sym_INTEGER_token1] = ACTIONS(482), - [aux_sym_INTEGER_token2] = ACTIONS(482), - [aux_sym_INTEGER_token3] = ACTIONS(485), - [aux_sym_INTEGER_token4] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(488), - [aux_sym_LINESTRING_token1] = ACTIONS(491), - [aux_sym_IDENTIFIER_token1] = ACTIONS(494), - [anon_sym_AT] = ACTIONS(497), - }, - [43] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(38), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(38), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(323), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(325), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_const] = ACTIONS(327), - [anon_sym_var] = ACTIONS(327), - [anon_sym_nosuspend] = ACTIONS(329), - [anon_sym_defer] = ACTIONS(331), - [anon_sym_suspend] = ACTIONS(331), - [anon_sym_errdefer] = ACTIONS(333), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_RBRACE] = ACTIONS(500), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(339), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [44] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(37), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(37), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -15907,7 +15944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -15948,66 +15985,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [45] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(42), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(27), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym_Block_repeat1] = STATE(42), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym_Block_repeat1] = STATE(27), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -16026,7 +16063,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -16067,65 +16104,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [46] = { - [sym_FnProto] = STATE(719), - [sym_VarDecl] = STATE(869), - [sym_Statement] = STATE(892), - [sym_IfStatement] = STATE(869), - [sym_LabeledStatement] = STATE(869), - [sym_LoopStatement] = STATE(891), - [sym_ForStatement] = STATE(890), - [sym_WhileStatement] = STATE(890), - [sym_AssignExpr] = STATE(2361), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(93), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym_VarDecl] = STATE(883), + [sym_Statement] = STATE(881), + [sym_IfStatement] = STATE(883), + [sym_LabeledStatement] = STATE(883), + [sym_LoopStatement] = STATE(870), + [sym_ForStatement] = STATE(897), + [sym_WhileStatement] = STATE(897), + [sym_AssignExpr] = STATE(2344), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(94), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(53), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1905), - [sym_IfPrefix] = STATE(110), - [sym_WhilePrefix] = STATE(111), - [sym_ForPrefix] = STATE(112), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(64), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1911), + [sym_IfPrefix] = STATE(118), + [sym_WhilePrefix] = STATE(119), + [sym_ForPrefix] = STATE(120), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(323), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(325), @@ -16143,7 +16180,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -16184,7 +16221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, @@ -16295,7 +16332,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(506), [aux_sym_INTEGER_token4] = ACTIONS(506), [anon_sym_DQUOTE] = ACTIONS(508), - [aux_sym_LINESTRING_token1] = ACTIONS(508), + [anon_sym_BSLASH_BSLASH] = ACTIONS(508), [aux_sym_IDENTIFIER_token1] = ACTIONS(506), [anon_sym_AT] = ACTIONS(508), }, @@ -16406,7 +16443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(510), [aux_sym_INTEGER_token4] = ACTIONS(510), [anon_sym_DQUOTE] = ACTIONS(512), - [aux_sym_LINESTRING_token1] = ACTIONS(512), + [anon_sym_BSLASH_BSLASH] = ACTIONS(512), [aux_sym_IDENTIFIER_token1] = ACTIONS(510), [anon_sym_AT] = ACTIONS(512), }, @@ -16517,121 +16554,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(514), [aux_sym_INTEGER_token4] = ACTIONS(514), [anon_sym_DQUOTE] = ACTIONS(520), - [aux_sym_LINESTRING_token1] = ACTIONS(520), + [anon_sym_BSLASH_BSLASH] = ACTIONS(520), [aux_sym_IDENTIFIER_token1] = ACTIONS(514), [anon_sym_AT] = ACTIONS(520), }, [50] = { - [anon_sym_comptime] = ACTIONS(522), - [anon_sym_extern] = ACTIONS(522), - [anon_sym_inline] = ACTIONS(522), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_fn] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_const] = ACTIONS(522), - [anon_sym_var] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_nosuspend] = ACTIONS(522), - [anon_sym_defer] = ACTIONS(522), - [anon_sym_suspend] = ACTIONS(522), - [anon_sym_errdefer] = ACTIONS(522), - [anon_sym_or] = ACTIONS(522), - [anon_sym_and] = ACTIONS(522), - [anon_sym_break] = ACTIONS(522), - [anon_sym_continue] = ACTIONS(522), - [anon_sym_resume] = ACTIONS(522), - [anon_sym_return] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_async] = ACTIONS(522), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_error] = ACTIONS(522), - [anon_sym_false] = ACTIONS(522), - [anon_sym_null] = ACTIONS(522), - [anon_sym_anyframe] = ACTIONS(522), - [anon_sym_true] = ACTIONS(522), - [anon_sym_undefined] = ACTIONS(522), - [anon_sym_unreachable] = ACTIONS(522), - [sym_BuildinTypeExpr] = ACTIONS(522), - [anon_sym_packed] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_switch] = ACTIONS(522), - [anon_sym_asm] = ACTIONS(522), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_if] = ACTIONS(522), - [anon_sym_while] = ACTIONS(522), - [anon_sym_for] = ACTIONS(522), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_STAR_EQ] = ACTIONS(524), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(524), - [anon_sym_SLASH_EQ] = ACTIONS(524), - [anon_sym_PERCENT_EQ] = ACTIONS(524), - [anon_sym_PLUS_EQ] = ACTIONS(524), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(524), - [anon_sym_DASH_EQ] = ACTIONS(524), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(524), - [anon_sym_LT_LT_EQ] = ACTIONS(524), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(524), - [anon_sym_GT_GT_EQ] = ACTIONS(524), - [anon_sym_AMP_EQ] = ACTIONS(524), - [anon_sym_CARET_EQ] = ACTIONS(524), - [anon_sym_PIPE_EQ] = ACTIONS(524), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(524), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(524), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_orelse] = ACTIONS(522), - [anon_sym_catch] = ACTIONS(522), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_LT_LT_PIPE] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_PLUS_PERCENT] = ACTIONS(522), - [anon_sym_DASH_PERCENT] = ACTIONS(522), - [anon_sym_PLUS_PIPE] = ACTIONS(522), - [anon_sym_DASH_PIPE] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_STAR_PERCENT] = ACTIONS(522), - [anon_sym_STAR_PIPE] = ACTIONS(522), - [anon_sym_TILDE] = ACTIONS(524), - [anon_sym_try] = ACTIONS(522), - [anon_sym_await] = ACTIONS(522), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_DOT_STAR] = ACTIONS(524), - [anon_sym_DOT_QMARK] = ACTIONS(524), - [anon_sym_struct] = ACTIONS(522), - [anon_sym_opaque] = ACTIONS(522), - [anon_sym_enum] = ACTIONS(522), - [anon_sym_union] = ACTIONS(522), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(524), - [aux_sym_FLOAT_token1] = ACTIONS(524), - [aux_sym_FLOAT_token2] = ACTIONS(524), - [aux_sym_FLOAT_token3] = ACTIONS(524), - [aux_sym_FLOAT_token4] = ACTIONS(524), - [aux_sym_INTEGER_token1] = ACTIONS(524), - [aux_sym_INTEGER_token2] = ACTIONS(524), - [aux_sym_INTEGER_token3] = ACTIONS(522), - [aux_sym_INTEGER_token4] = ACTIONS(522), - [anon_sym_DQUOTE] = ACTIONS(524), - [aux_sym_LINESTRING_token1] = ACTIONS(524), - [aux_sym_IDENTIFIER_token1] = ACTIONS(522), - [anon_sym_AT] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_STAR_EQ] = ACTIONS(522), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(522), + [anon_sym_SLASH_EQ] = ACTIONS(522), + [anon_sym_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(522), + [anon_sym_LT_LT_EQ] = ACTIONS(522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(522), + [anon_sym_GT_GT_EQ] = ACTIONS(522), + [anon_sym_AMP_EQ] = ACTIONS(522), + [anon_sym_CARET_EQ] = ACTIONS(522), + [anon_sym_PIPE_EQ] = ACTIONS(522), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(522), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_CARET] = ACTIONS(524), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_LT_LT_PIPE] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(524), + [anon_sym_DASH_PERCENT] = ACTIONS(524), + [anon_sym_PLUS_PIPE] = ACTIONS(524), + [anon_sym_DASH_PIPE] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(524), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(524), + [anon_sym_STAR_PIPE] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), }, [51] = { + [anon_sym_comptime] = ACTIONS(510), + [anon_sym_extern] = ACTIONS(510), + [anon_sym_inline] = ACTIONS(510), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_fn] = ACTIONS(510), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_const] = ACTIONS(510), + [anon_sym_var] = ACTIONS(510), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_nosuspend] = ACTIONS(510), + [anon_sym_defer] = ACTIONS(510), + [anon_sym_suspend] = ACTIONS(510), + [anon_sym_errdefer] = ACTIONS(510), + [anon_sym_or] = ACTIONS(510), + [anon_sym_and] = ACTIONS(510), + [anon_sym_break] = ACTIONS(510), + [anon_sym_continue] = ACTIONS(510), + [anon_sym_resume] = ACTIONS(510), + [anon_sym_return] = ACTIONS(510), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_async] = ACTIONS(510), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_error] = ACTIONS(510), + [anon_sym_false] = ACTIONS(510), + [anon_sym_null] = ACTIONS(510), + [anon_sym_anyframe] = ACTIONS(510), + [anon_sym_true] = ACTIONS(510), + [anon_sym_undefined] = ACTIONS(510), + [anon_sym_unreachable] = ACTIONS(510), + [sym_BuildinTypeExpr] = ACTIONS(510), + [anon_sym_packed] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_switch] = ACTIONS(510), + [anon_sym_asm] = ACTIONS(510), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_if] = ACTIONS(510), + [anon_sym_while] = ACTIONS(510), + [anon_sym_for] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(512), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(512), + [anon_sym_GT_GT_EQ] = ACTIONS(512), + [anon_sym_AMP_EQ] = ACTIONS(512), + [anon_sym_CARET_EQ] = ACTIONS(512), + [anon_sym_PIPE_EQ] = ACTIONS(512), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(512), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(512), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_orelse] = ACTIONS(510), + [anon_sym_catch] = ACTIONS(510), + [anon_sym_LT_LT] = ACTIONS(510), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_LT_LT_PIPE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_PLUS_PERCENT] = ACTIONS(510), + [anon_sym_DASH_PERCENT] = ACTIONS(510), + [anon_sym_PLUS_PIPE] = ACTIONS(510), + [anon_sym_DASH_PIPE] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_STAR_STAR] = ACTIONS(512), + [anon_sym_STAR_PERCENT] = ACTIONS(510), + [anon_sym_STAR_PIPE] = ACTIONS(510), + [anon_sym_TILDE] = ACTIONS(512), + [anon_sym_try] = ACTIONS(510), + [anon_sym_await] = ACTIONS(510), + [anon_sym_QMARK] = ACTIONS(512), + [anon_sym_DOT_STAR] = ACTIONS(512), + [anon_sym_DOT_QMARK] = ACTIONS(512), + [anon_sym_struct] = ACTIONS(510), + [anon_sym_opaque] = ACTIONS(510), + [anon_sym_enum] = ACTIONS(510), + [anon_sym_union] = ACTIONS(510), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(512), + [aux_sym_FLOAT_token1] = ACTIONS(512), + [aux_sym_FLOAT_token2] = ACTIONS(512), + [aux_sym_FLOAT_token3] = ACTIONS(512), + [aux_sym_FLOAT_token4] = ACTIONS(512), + [aux_sym_INTEGER_token1] = ACTIONS(512), + [aux_sym_INTEGER_token2] = ACTIONS(512), + [aux_sym_INTEGER_token3] = ACTIONS(510), + [aux_sym_INTEGER_token4] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_BSLASH_BSLASH] = ACTIONS(512), + [aux_sym_IDENTIFIER_token1] = ACTIONS(510), + [anon_sym_AT] = ACTIONS(512), + }, + [52] = { [anon_sym_COMMA] = ACTIONS(526), [anon_sym_comptime] = ACTIONS(528), [anon_sym_extern] = ACTIONS(528), @@ -16737,186 +16884,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(528), [aux_sym_INTEGER_token4] = ACTIONS(528), [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), [aux_sym_IDENTIFIER_token1] = ACTIONS(528), [anon_sym_AT] = ACTIONS(526), }, - [52] = { - [anon_sym_comptime] = ACTIONS(514), - [anon_sym_extern] = ACTIONS(514), - [anon_sym_inline] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_fn] = ACTIONS(514), - [anon_sym_BANG] = ACTIONS(514), - [anon_sym_const] = ACTIONS(514), - [anon_sym_var] = ACTIONS(514), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_nosuspend] = ACTIONS(514), - [anon_sym_defer] = ACTIONS(514), - [anon_sym_suspend] = ACTIONS(514), - [anon_sym_errdefer] = ACTIONS(514), - [anon_sym_or] = ACTIONS(518), - [anon_sym_and] = ACTIONS(518), - [anon_sym_break] = ACTIONS(514), - [anon_sym_continue] = ACTIONS(514), - [anon_sym_resume] = ACTIONS(514), - [anon_sym_return] = ACTIONS(514), - [anon_sym_LBRACE] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(520), - [anon_sym_async] = ACTIONS(514), - [anon_sym_DOT] = ACTIONS(514), - [anon_sym_error] = ACTIONS(514), - [anon_sym_false] = ACTIONS(514), - [anon_sym_null] = ACTIONS(514), - [anon_sym_anyframe] = ACTIONS(514), - [anon_sym_true] = ACTIONS(514), - [anon_sym_undefined] = ACTIONS(514), - [anon_sym_unreachable] = ACTIONS(514), - [sym_BuildinTypeExpr] = ACTIONS(514), - [anon_sym_packed] = ACTIONS(514), - [anon_sym_LPAREN] = ACTIONS(520), - [anon_sym_switch] = ACTIONS(514), - [anon_sym_asm] = ACTIONS(514), - [anon_sym_LBRACK] = ACTIONS(520), - [anon_sym_if] = ACTIONS(514), - [anon_sym_while] = ACTIONS(514), - [anon_sym_for] = ACTIONS(514), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(514), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(516), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(516), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(514), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_orelse] = ACTIONS(518), - [anon_sym_catch] = ACTIONS(518), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_LT_LT_PIPE] = ACTIONS(518), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(514), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_PLUS_PERCENT] = ACTIONS(518), - [anon_sym_DASH_PERCENT] = ACTIONS(514), - [anon_sym_PLUS_PIPE] = ACTIONS(518), - [anon_sym_DASH_PIPE] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR_STAR] = ACTIONS(520), - [anon_sym_STAR_PERCENT] = ACTIONS(518), - [anon_sym_STAR_PIPE] = ACTIONS(518), - [anon_sym_TILDE] = ACTIONS(520), - [anon_sym_try] = ACTIONS(514), - [anon_sym_await] = ACTIONS(514), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_DOT_STAR] = ACTIONS(516), - [anon_sym_DOT_QMARK] = ACTIONS(516), - [anon_sym_struct] = ACTIONS(514), - [anon_sym_opaque] = ACTIONS(514), - [anon_sym_enum] = ACTIONS(514), - [anon_sym_union] = ACTIONS(514), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(520), - [aux_sym_FLOAT_token1] = ACTIONS(520), - [aux_sym_FLOAT_token2] = ACTIONS(520), - [aux_sym_FLOAT_token3] = ACTIONS(520), - [aux_sym_FLOAT_token4] = ACTIONS(520), - [aux_sym_INTEGER_token1] = ACTIONS(520), - [aux_sym_INTEGER_token2] = ACTIONS(520), - [aux_sym_INTEGER_token3] = ACTIONS(514), - [aux_sym_INTEGER_token4] = ACTIONS(514), - [anon_sym_DQUOTE] = ACTIONS(520), - [aux_sym_LINESTRING_token1] = ACTIONS(520), - [aux_sym_IDENTIFIER_token1] = ACTIONS(514), - [anon_sym_AT] = ACTIONS(520), - }, [53] = { - [anon_sym_comptime] = ACTIONS(530), - [anon_sym_extern] = ACTIONS(530), - [anon_sym_inline] = ACTIONS(530), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_fn] = ACTIONS(530), - [anon_sym_BANG] = ACTIONS(530), - [anon_sym_const] = ACTIONS(530), - [anon_sym_var] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(530), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(530), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(530), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_LT_LT_PIPE] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(532), + [anon_sym_DASH_PERCENT] = ACTIONS(532), + [anon_sym_PLUS_PIPE] = ACTIONS(532), + [anon_sym_DASH_PIPE] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(532), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(532), + [anon_sym_STAR_PIPE] = ACTIONS(532), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), + }, + [54] = { + [anon_sym_comptime] = ACTIONS(534), + [anon_sym_extern] = ACTIONS(534), + [anon_sym_inline] = ACTIONS(534), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_fn] = ACTIONS(534), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_const] = ACTIONS(534), + [anon_sym_var] = ACTIONS(534), [anon_sym_EQ] = ACTIONS(534), - [anon_sym_nosuspend] = ACTIONS(530), - [anon_sym_defer] = ACTIONS(530), - [anon_sym_suspend] = ACTIONS(530), - [anon_sym_errdefer] = ACTIONS(530), + [anon_sym_nosuspend] = ACTIONS(534), + [anon_sym_defer] = ACTIONS(534), + [anon_sym_suspend] = ACTIONS(534), + [anon_sym_errdefer] = ACTIONS(534), [anon_sym_or] = ACTIONS(534), [anon_sym_and] = ACTIONS(534), - [anon_sym_break] = ACTIONS(530), - [anon_sym_continue] = ACTIONS(530), - [anon_sym_resume] = ACTIONS(530), - [anon_sym_return] = ACTIONS(530), + [anon_sym_break] = ACTIONS(534), + [anon_sym_continue] = ACTIONS(534), + [anon_sym_resume] = ACTIONS(534), + [anon_sym_return] = ACTIONS(534), [anon_sym_LBRACE] = ACTIONS(536), [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_async] = ACTIONS(530), - [anon_sym_DOT] = ACTIONS(530), - [anon_sym_error] = ACTIONS(530), - [anon_sym_false] = ACTIONS(530), - [anon_sym_null] = ACTIONS(530), - [anon_sym_anyframe] = ACTIONS(530), - [anon_sym_true] = ACTIONS(530), - [anon_sym_undefined] = ACTIONS(530), - [anon_sym_unreachable] = ACTIONS(530), - [sym_BuildinTypeExpr] = ACTIONS(530), - [anon_sym_packed] = ACTIONS(530), + [anon_sym_async] = ACTIONS(534), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_error] = ACTIONS(534), + [anon_sym_false] = ACTIONS(534), + [anon_sym_null] = ACTIONS(534), + [anon_sym_anyframe] = ACTIONS(534), + [anon_sym_true] = ACTIONS(534), + [anon_sym_undefined] = ACTIONS(534), + [anon_sym_unreachable] = ACTIONS(534), + [sym_BuildinTypeExpr] = ACTIONS(534), + [anon_sym_packed] = ACTIONS(534), [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_switch] = ACTIONS(530), - [anon_sym_asm] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(534), + [anon_sym_asm] = ACTIONS(534), [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_if] = ACTIONS(530), - [anon_sym_while] = ACTIONS(530), - [anon_sym_for] = ACTIONS(530), + [anon_sym_if] = ACTIONS(534), + [anon_sym_while] = ACTIONS(534), + [anon_sym_for] = ACTIONS(534), [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(530), - [anon_sym_STAR_EQ] = ACTIONS(532), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(532), - [anon_sym_SLASH_EQ] = ACTIONS(532), - [anon_sym_PERCENT_EQ] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(532), - [anon_sym_LT_LT_EQ] = ACTIONS(532), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(532), - [anon_sym_GT_GT_EQ] = ACTIONS(532), - [anon_sym_AMP_EQ] = ACTIONS(532), - [anon_sym_CARET_EQ] = ACTIONS(532), - [anon_sym_PIPE_EQ] = ACTIONS(532), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(532), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(532), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(536), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(536), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), [anon_sym_LT] = ACTIONS(534), [anon_sym_GT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(530), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(534), [anon_sym_CARET] = ACTIONS(534), [anon_sym_orelse] = ACTIONS(534), [anon_sym_catch] = ACTIONS(534), @@ -16924,28 +17071,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(534), [anon_sym_LT_LT_PIPE] = ACTIONS(534), [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(530), - [anon_sym_PLUS_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(536), [anon_sym_PLUS_PERCENT] = ACTIONS(534), - [anon_sym_DASH_PERCENT] = ACTIONS(530), + [anon_sym_DASH_PERCENT] = ACTIONS(534), [anon_sym_PLUS_PIPE] = ACTIONS(534), [anon_sym_DASH_PIPE] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(536), [anon_sym_SLASH] = ACTIONS(534), [anon_sym_PERCENT] = ACTIONS(534), [anon_sym_STAR_STAR] = ACTIONS(536), [anon_sym_STAR_PERCENT] = ACTIONS(534), [anon_sym_STAR_PIPE] = ACTIONS(534), [anon_sym_TILDE] = ACTIONS(536), - [anon_sym_try] = ACTIONS(530), - [anon_sym_await] = ACTIONS(530), + [anon_sym_try] = ACTIONS(534), + [anon_sym_await] = ACTIONS(534), [anon_sym_QMARK] = ACTIONS(536), - [anon_sym_DOT_STAR] = ACTIONS(532), - [anon_sym_DOT_QMARK] = ACTIONS(532), - [anon_sym_struct] = ACTIONS(530), - [anon_sym_opaque] = ACTIONS(530), - [anon_sym_enum] = ACTIONS(530), - [anon_sym_union] = ACTIONS(530), + [anon_sym_DOT_STAR] = ACTIONS(536), + [anon_sym_DOT_QMARK] = ACTIONS(536), + [anon_sym_struct] = ACTIONS(534), + [anon_sym_opaque] = ACTIONS(534), + [anon_sym_enum] = ACTIONS(534), + [anon_sym_union] = ACTIONS(534), [sym_line_comment] = ACTIONS(95), [anon_sym_SQUOTE] = ACTIONS(536), [aux_sym_FLOAT_token1] = ACTIONS(536), @@ -16954,342 +17101,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_FLOAT_token4] = ACTIONS(536), [aux_sym_INTEGER_token1] = ACTIONS(536), [aux_sym_INTEGER_token2] = ACTIONS(536), - [aux_sym_INTEGER_token3] = ACTIONS(530), - [aux_sym_INTEGER_token4] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(534), + [aux_sym_INTEGER_token4] = ACTIONS(534), [anon_sym_DQUOTE] = ACTIONS(536), - [aux_sym_LINESTRING_token1] = ACTIONS(536), - [aux_sym_IDENTIFIER_token1] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(536), + [aux_sym_IDENTIFIER_token1] = ACTIONS(534), [anon_sym_AT] = ACTIONS(536), }, - [54] = { - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_COLON] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_STAR_EQ] = ACTIONS(538), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(538), - [anon_sym_SLASH_EQ] = ACTIONS(538), - [anon_sym_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(538), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(538), - [anon_sym_DASH_EQ] = ACTIONS(538), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(538), - [anon_sym_LT_LT_EQ] = ACTIONS(538), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(538), - [anon_sym_GT_GT_EQ] = ACTIONS(538), - [anon_sym_AMP_EQ] = ACTIONS(538), - [anon_sym_CARET_EQ] = ACTIONS(538), - [anon_sym_PIPE_EQ] = ACTIONS(538), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(538), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(540), - [anon_sym_LT_LT_PIPE] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(540), - [anon_sym_DASH_PERCENT] = ACTIONS(540), - [anon_sym_PLUS_PIPE] = ACTIONS(540), - [anon_sym_DASH_PIPE] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(540), - [anon_sym_STAR_PIPE] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), - }, [55] = { - [anon_sym_comptime] = ACTIONS(510), - [anon_sym_extern] = ACTIONS(510), - [anon_sym_inline] = ACTIONS(510), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_fn] = ACTIONS(510), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_const] = ACTIONS(510), - [anon_sym_var] = ACTIONS(510), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_nosuspend] = ACTIONS(510), - [anon_sym_defer] = ACTIONS(510), - [anon_sym_suspend] = ACTIONS(510), - [anon_sym_errdefer] = ACTIONS(510), - [anon_sym_or] = ACTIONS(510), - [anon_sym_and] = ACTIONS(510), - [anon_sym_break] = ACTIONS(510), - [anon_sym_continue] = ACTIONS(510), - [anon_sym_resume] = ACTIONS(510), - [anon_sym_return] = ACTIONS(510), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_async] = ACTIONS(510), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_error] = ACTIONS(510), - [anon_sym_false] = ACTIONS(510), - [anon_sym_null] = ACTIONS(510), - [anon_sym_anyframe] = ACTIONS(510), - [anon_sym_true] = ACTIONS(510), - [anon_sym_undefined] = ACTIONS(510), - [anon_sym_unreachable] = ACTIONS(510), - [sym_BuildinTypeExpr] = ACTIONS(510), - [anon_sym_packed] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_switch] = ACTIONS(510), - [anon_sym_asm] = ACTIONS(510), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_if] = ACTIONS(510), - [anon_sym_while] = ACTIONS(510), - [anon_sym_for] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(512), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(512), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_orelse] = ACTIONS(510), - [anon_sym_catch] = ACTIONS(510), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_LT_LT_PIPE] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_PLUS_PLUS] = ACTIONS(512), - [anon_sym_PLUS_PERCENT] = ACTIONS(510), - [anon_sym_DASH_PERCENT] = ACTIONS(510), - [anon_sym_PLUS_PIPE] = ACTIONS(510), - [anon_sym_DASH_PIPE] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_STAR_STAR] = ACTIONS(512), - [anon_sym_STAR_PERCENT] = ACTIONS(510), - [anon_sym_STAR_PIPE] = ACTIONS(510), - [anon_sym_TILDE] = ACTIONS(512), - [anon_sym_try] = ACTIONS(510), - [anon_sym_await] = ACTIONS(510), - [anon_sym_QMARK] = ACTIONS(512), - [anon_sym_DOT_STAR] = ACTIONS(512), - [anon_sym_DOT_QMARK] = ACTIONS(512), - [anon_sym_struct] = ACTIONS(510), - [anon_sym_opaque] = ACTIONS(510), - [anon_sym_enum] = ACTIONS(510), - [anon_sym_union] = ACTIONS(510), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(512), - [aux_sym_FLOAT_token1] = ACTIONS(512), - [aux_sym_FLOAT_token2] = ACTIONS(512), - [aux_sym_FLOAT_token3] = ACTIONS(512), - [aux_sym_FLOAT_token4] = ACTIONS(512), - [aux_sym_INTEGER_token1] = ACTIONS(512), - [aux_sym_INTEGER_token2] = ACTIONS(512), - [aux_sym_INTEGER_token3] = ACTIONS(510), - [aux_sym_INTEGER_token4] = ACTIONS(510), - [anon_sym_DQUOTE] = ACTIONS(512), - [aux_sym_LINESTRING_token1] = ACTIONS(512), - [aux_sym_IDENTIFIER_token1] = ACTIONS(510), - [anon_sym_AT] = ACTIONS(512), + [anon_sym_comptime] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_inline] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_fn] = ACTIONS(538), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_const] = ACTIONS(538), + [anon_sym_var] = ACTIONS(538), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_nosuspend] = ACTIONS(538), + [anon_sym_defer] = ACTIONS(538), + [anon_sym_suspend] = ACTIONS(538), + [anon_sym_errdefer] = ACTIONS(538), + [anon_sym_or] = ACTIONS(538), + [anon_sym_and] = ACTIONS(538), + [anon_sym_break] = ACTIONS(538), + [anon_sym_continue] = ACTIONS(538), + [anon_sym_resume] = ACTIONS(538), + [anon_sym_return] = ACTIONS(538), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_async] = ACTIONS(538), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_error] = ACTIONS(538), + [anon_sym_false] = ACTIONS(538), + [anon_sym_null] = ACTIONS(538), + [anon_sym_anyframe] = ACTIONS(538), + [anon_sym_true] = ACTIONS(538), + [anon_sym_undefined] = ACTIONS(538), + [anon_sym_unreachable] = ACTIONS(538), + [sym_BuildinTypeExpr] = ACTIONS(538), + [anon_sym_packed] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_switch] = ACTIONS(538), + [anon_sym_asm] = ACTIONS(538), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_if] = ACTIONS(538), + [anon_sym_while] = ACTIONS(538), + [anon_sym_for] = ACTIONS(538), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(540), + [anon_sym_LT_LT_EQ] = ACTIONS(540), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(540), + [anon_sym_GT_GT_EQ] = ACTIONS(540), + [anon_sym_AMP_EQ] = ACTIONS(540), + [anon_sym_CARET_EQ] = ACTIONS(540), + [anon_sym_PIPE_EQ] = ACTIONS(540), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(540), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(540), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_orelse] = ACTIONS(538), + [anon_sym_catch] = ACTIONS(538), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_LT_LT_PIPE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(540), + [anon_sym_PLUS_PERCENT] = ACTIONS(538), + [anon_sym_DASH_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_PIPE] = ACTIONS(538), + [anon_sym_DASH_PIPE] = ACTIONS(538), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_STAR_STAR] = ACTIONS(540), + [anon_sym_STAR_PERCENT] = ACTIONS(538), + [anon_sym_STAR_PIPE] = ACTIONS(538), + [anon_sym_TILDE] = ACTIONS(540), + [anon_sym_try] = ACTIONS(538), + [anon_sym_await] = ACTIONS(538), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_DOT_STAR] = ACTIONS(540), + [anon_sym_DOT_QMARK] = ACTIONS(540), + [anon_sym_struct] = ACTIONS(538), + [anon_sym_opaque] = ACTIONS(538), + [anon_sym_enum] = ACTIONS(538), + [anon_sym_union] = ACTIONS(538), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(540), + [aux_sym_FLOAT_token1] = ACTIONS(540), + [aux_sym_FLOAT_token2] = ACTIONS(540), + [aux_sym_FLOAT_token3] = ACTIONS(540), + [aux_sym_FLOAT_token4] = ACTIONS(540), + [aux_sym_INTEGER_token1] = ACTIONS(540), + [aux_sym_INTEGER_token2] = ACTIONS(540), + [aux_sym_INTEGER_token3] = ACTIONS(538), + [aux_sym_INTEGER_token4] = ACTIONS(538), + [anon_sym_DQUOTE] = ACTIONS(540), + [anon_sym_BSLASH_BSLASH] = ACTIONS(540), + [aux_sym_IDENTIFIER_token1] = ACTIONS(538), + [anon_sym_AT] = ACTIONS(540), }, [56] = { - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_error] = ACTIONS(544), + [sym_FnProto] = STATE(717), + [sym_VarDecl] = STATE(874), + [sym_BlockExprStatement] = STATE(874), + [sym_BlockExpr] = STATE(872), + [sym_AssignExpr] = STATE(2365), + [sym__Expr] = STATE(1141), + [sym_BinaryExpr] = STATE(1141), + [sym_UnaryExpr] = STATE(1141), + [sym__PrimaryExpr] = STATE(1141), + [sym_IfExpr] = STATE(1141), + [sym_Block] = STATE(93), + [sym_LoopExpr] = STATE(1141), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1141), + [sym__TypeExpr] = STATE(840), + [sym_ErrorUnionExpr] = STATE(840), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1141), + [sym_BlockLabel] = STATE(1917), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_const] = ACTIONS(327), + [anon_sym_var] = ACTIONS(327), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(544), [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), [anon_sym_true] = ACTIONS(544), [anon_sym_undefined] = ACTIONS(544), [anon_sym_unreachable] = ACTIONS(544), [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(542), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(542), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_LT_LT_PIPE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(544), - [anon_sym_DASH_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_PIPE] = ACTIONS(544), - [anon_sym_DASH_PIPE] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(544), - [anon_sym_STAR_PIPE] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [57] = { [anon_sym_comptime] = ACTIONS(546), @@ -17397,7 +17434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(546), [aux_sym_INTEGER_token4] = ACTIONS(546), [anon_sym_DQUOTE] = ACTIONS(548), - [aux_sym_LINESTRING_token1] = ACTIONS(548), + [anon_sym_BSLASH_BSLASH] = ACTIONS(548), [aux_sym_IDENTIFIER_token1] = ACTIONS(546), [anon_sym_AT] = ACTIONS(548), }, @@ -17507,272 +17544,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(550), [aux_sym_INTEGER_token4] = ACTIONS(550), [anon_sym_DQUOTE] = ACTIONS(552), - [aux_sym_LINESTRING_token1] = ACTIONS(552), + [anon_sym_BSLASH_BSLASH] = ACTIONS(552), [aux_sym_IDENTIFIER_token1] = ACTIONS(550), [anon_sym_AT] = ACTIONS(552), }, [59] = { - [sym_FnProto] = STATE(720), - [sym_VarDecl] = STATE(904), - [sym_BlockExprStatement] = STATE(904), - [sym_BlockExpr] = STATE(903), - [sym_AssignExpr] = STATE(2346), - [sym__Expr] = STATE(1201), - [sym_BinaryExpr] = STATE(1201), - [sym_UnaryExpr] = STATE(1201), - [sym__PrimaryExpr] = STATE(1201), - [sym_IfExpr] = STATE(1201), - [sym_Block] = STATE(95), - [sym_LoopExpr] = STATE(1201), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1201), - [sym__TypeExpr] = STATE(839), - [sym_ErrorUnionExpr] = STATE(839), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1201), - [sym_BlockLabel] = STATE(1918), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_const] = ACTIONS(327), - [anon_sym_var] = ACTIONS(327), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [60] = { - [anon_sym_comptime] = ACTIONS(558), - [anon_sym_extern] = ACTIONS(558), - [anon_sym_inline] = ACTIONS(558), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_fn] = ACTIONS(558), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_const] = ACTIONS(558), - [anon_sym_var] = ACTIONS(558), - [anon_sym_EQ] = ACTIONS(558), - [anon_sym_nosuspend] = ACTIONS(558), - [anon_sym_defer] = ACTIONS(558), - [anon_sym_suspend] = ACTIONS(558), - [anon_sym_errdefer] = ACTIONS(558), - [anon_sym_or] = ACTIONS(558), - [anon_sym_and] = ACTIONS(558), - [anon_sym_break] = ACTIONS(558), - [anon_sym_continue] = ACTIONS(558), - [anon_sym_resume] = ACTIONS(558), - [anon_sym_return] = ACTIONS(558), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_async] = ACTIONS(558), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_error] = ACTIONS(558), - [anon_sym_false] = ACTIONS(558), - [anon_sym_null] = ACTIONS(558), - [anon_sym_anyframe] = ACTIONS(558), - [anon_sym_true] = ACTIONS(558), - [anon_sym_undefined] = ACTIONS(558), - [anon_sym_unreachable] = ACTIONS(558), - [sym_BuildinTypeExpr] = ACTIONS(558), - [anon_sym_packed] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_switch] = ACTIONS(558), - [anon_sym_asm] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_if] = ACTIONS(558), - [anon_sym_while] = ACTIONS(558), - [anon_sym_for] = ACTIONS(558), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_STAR] = ACTIONS(558), - [anon_sym_STAR_EQ] = ACTIONS(560), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(560), - [anon_sym_SLASH_EQ] = ACTIONS(560), - [anon_sym_PERCENT_EQ] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(560), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(560), - [anon_sym_DASH_EQ] = ACTIONS(560), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(560), - [anon_sym_LT_LT_EQ] = ACTIONS(560), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(560), - [anon_sym_GT_GT_EQ] = ACTIONS(560), - [anon_sym_AMP_EQ] = ACTIONS(560), - [anon_sym_CARET_EQ] = ACTIONS(560), - [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(560), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(560), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(560), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(558), - [anon_sym_orelse] = ACTIONS(558), - [anon_sym_catch] = ACTIONS(558), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(558), - [anon_sym_LT_LT_PIPE] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_PLUS_PLUS] = ACTIONS(560), - [anon_sym_PLUS_PERCENT] = ACTIONS(558), - [anon_sym_DASH_PERCENT] = ACTIONS(558), - [anon_sym_PLUS_PIPE] = ACTIONS(558), - [anon_sym_DASH_PIPE] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(558), - [anon_sym_STAR_STAR] = ACTIONS(560), - [anon_sym_STAR_PERCENT] = ACTIONS(558), - [anon_sym_STAR_PIPE] = ACTIONS(558), - [anon_sym_TILDE] = ACTIONS(560), - [anon_sym_try] = ACTIONS(558), - [anon_sym_await] = ACTIONS(558), - [anon_sym_QMARK] = ACTIONS(560), - [anon_sym_DOT_STAR] = ACTIONS(560), - [anon_sym_DOT_QMARK] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(558), - [anon_sym_opaque] = ACTIONS(558), - [anon_sym_enum] = ACTIONS(558), - [anon_sym_union] = ACTIONS(558), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(560), - [aux_sym_FLOAT_token1] = ACTIONS(560), - [aux_sym_FLOAT_token2] = ACTIONS(560), - [aux_sym_FLOAT_token3] = ACTIONS(560), - [aux_sym_FLOAT_token4] = ACTIONS(560), - [aux_sym_INTEGER_token1] = ACTIONS(560), - [aux_sym_INTEGER_token2] = ACTIONS(560), - [aux_sym_INTEGER_token3] = ACTIONS(558), - [aux_sym_INTEGER_token4] = ACTIONS(558), - [anon_sym_DQUOTE] = ACTIONS(560), - [aux_sym_LINESTRING_token1] = ACTIONS(560), - [aux_sym_IDENTIFIER_token1] = ACTIONS(558), - [anon_sym_AT] = ACTIONS(560), - }, - [61] = { - [anon_sym_comptime] = ACTIONS(562), - [anon_sym_extern] = ACTIONS(562), - [anon_sym_inline] = ACTIONS(562), + [anon_sym_comptime] = ACTIONS(554), + [anon_sym_extern] = ACTIONS(554), + [anon_sym_inline] = ACTIONS(554), [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_fn] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(562), - [anon_sym_const] = ACTIONS(562), - [anon_sym_var] = ACTIONS(562), + [anon_sym_fn] = ACTIONS(554), + [anon_sym_BANG] = ACTIONS(554), + [anon_sym_const] = ACTIONS(554), + [anon_sym_var] = ACTIONS(554), [anon_sym_EQ] = ACTIONS(518), - [anon_sym_nosuspend] = ACTIONS(562), - [anon_sym_defer] = ACTIONS(562), - [anon_sym_suspend] = ACTIONS(562), - [anon_sym_errdefer] = ACTIONS(562), + [anon_sym_nosuspend] = ACTIONS(554), + [anon_sym_defer] = ACTIONS(554), + [anon_sym_suspend] = ACTIONS(554), + [anon_sym_errdefer] = ACTIONS(554), [anon_sym_or] = ACTIONS(518), [anon_sym_and] = ACTIONS(518), - [anon_sym_break] = ACTIONS(562), - [anon_sym_continue] = ACTIONS(562), - [anon_sym_resume] = ACTIONS(562), - [anon_sym_return] = ACTIONS(562), - [anon_sym_LBRACE] = ACTIONS(564), - [anon_sym_RBRACE] = ACTIONS(564), - [anon_sym_async] = ACTIONS(562), - [anon_sym_DOT] = ACTIONS(562), - [anon_sym_error] = ACTIONS(562), - [anon_sym_false] = ACTIONS(562), - [anon_sym_null] = ACTIONS(562), - [anon_sym_anyframe] = ACTIONS(562), - [anon_sym_true] = ACTIONS(562), - [anon_sym_undefined] = ACTIONS(562), - [anon_sym_unreachable] = ACTIONS(562), - [sym_BuildinTypeExpr] = ACTIONS(562), - [anon_sym_packed] = ACTIONS(562), - [anon_sym_LPAREN] = ACTIONS(564), - [anon_sym_switch] = ACTIONS(562), - [anon_sym_asm] = ACTIONS(562), - [anon_sym_LBRACK] = ACTIONS(564), - [anon_sym_if] = ACTIONS(562), - [anon_sym_while] = ACTIONS(562), - [anon_sym_for] = ACTIONS(562), + [anon_sym_break] = ACTIONS(554), + [anon_sym_continue] = ACTIONS(554), + [anon_sym_resume] = ACTIONS(554), + [anon_sym_return] = ACTIONS(554), + [anon_sym_LBRACE] = ACTIONS(556), + [anon_sym_RBRACE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(554), + [anon_sym_DOT] = ACTIONS(554), + [anon_sym_error] = ACTIONS(554), + [anon_sym_false] = ACTIONS(554), + [anon_sym_null] = ACTIONS(554), + [anon_sym_anyframe] = ACTIONS(554), + [anon_sym_true] = ACTIONS(554), + [anon_sym_undefined] = ACTIONS(554), + [anon_sym_unreachable] = ACTIONS(554), + [sym_BuildinTypeExpr] = ACTIONS(554), + [anon_sym_packed] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_switch] = ACTIONS(554), + [anon_sym_asm] = ACTIONS(554), + [anon_sym_LBRACK] = ACTIONS(556), + [anon_sym_if] = ACTIONS(554), + [anon_sym_while] = ACTIONS(554), + [anon_sym_for] = ACTIONS(554), [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(562), + [anon_sym_STAR] = ACTIONS(554), [anon_sym_STAR_EQ] = ACTIONS(516), [anon_sym_STAR_PIPE_EQ] = ACTIONS(516), [anon_sym_SLASH_EQ] = ACTIONS(516), @@ -17796,7 +17613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(518), [anon_sym_LT_EQ] = ACTIONS(516), [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(554), [anon_sym_CARET] = ACTIONS(518), [anon_sym_orelse] = ACTIONS(518), [anon_sym_catch] = ACTIONS(518), @@ -17804,154 +17621,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(518), [anon_sym_LT_LT_PIPE] = ACTIONS(518), [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(562), + [anon_sym_DASH] = ACTIONS(554), [anon_sym_PLUS_PLUS] = ACTIONS(516), [anon_sym_PLUS_PERCENT] = ACTIONS(518), - [anon_sym_DASH_PERCENT] = ACTIONS(562), + [anon_sym_DASH_PERCENT] = ACTIONS(554), [anon_sym_PLUS_PIPE] = ACTIONS(518), [anon_sym_DASH_PIPE] = ACTIONS(518), [anon_sym_PIPE_PIPE] = ACTIONS(516), [anon_sym_SLASH] = ACTIONS(518), [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR_STAR] = ACTIONS(564), + [anon_sym_STAR_STAR] = ACTIONS(556), [anon_sym_STAR_PERCENT] = ACTIONS(518), [anon_sym_STAR_PIPE] = ACTIONS(518), - [anon_sym_TILDE] = ACTIONS(564), - [anon_sym_try] = ACTIONS(562), - [anon_sym_await] = ACTIONS(562), - [anon_sym_QMARK] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(556), + [anon_sym_try] = ACTIONS(554), + [anon_sym_await] = ACTIONS(554), + [anon_sym_QMARK] = ACTIONS(556), [anon_sym_DOT_STAR] = ACTIONS(516), [anon_sym_DOT_QMARK] = ACTIONS(516), - [anon_sym_struct] = ACTIONS(562), - [anon_sym_opaque] = ACTIONS(562), - [anon_sym_enum] = ACTIONS(562), - [anon_sym_union] = ACTIONS(562), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(564), - [aux_sym_FLOAT_token1] = ACTIONS(564), - [aux_sym_FLOAT_token2] = ACTIONS(564), - [aux_sym_FLOAT_token3] = ACTIONS(564), - [aux_sym_FLOAT_token4] = ACTIONS(564), - [aux_sym_INTEGER_token1] = ACTIONS(564), - [aux_sym_INTEGER_token2] = ACTIONS(564), - [aux_sym_INTEGER_token3] = ACTIONS(562), - [aux_sym_INTEGER_token4] = ACTIONS(562), - [anon_sym_DQUOTE] = ACTIONS(564), - [aux_sym_LINESTRING_token1] = ACTIONS(564), - [aux_sym_IDENTIFIER_token1] = ACTIONS(562), - [anon_sym_AT] = ACTIONS(564), - }, - [62] = { - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_COLON] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(566), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_LT_LT_PIPE] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(568), - [anon_sym_DASH_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_PIPE] = ACTIONS(568), - [anon_sym_DASH_PIPE] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(568), - [anon_sym_STAR_PIPE] = ACTIONS(568), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), + [anon_sym_struct] = ACTIONS(554), + [anon_sym_opaque] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(554), + [anon_sym_union] = ACTIONS(554), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(556), + [aux_sym_FLOAT_token1] = ACTIONS(556), + [aux_sym_FLOAT_token2] = ACTIONS(556), + [aux_sym_FLOAT_token3] = ACTIONS(556), + [aux_sym_FLOAT_token4] = ACTIONS(556), + [aux_sym_INTEGER_token1] = ACTIONS(556), + [aux_sym_INTEGER_token2] = ACTIONS(556), + [aux_sym_INTEGER_token3] = ACTIONS(554), + [aux_sym_INTEGER_token4] = ACTIONS(554), + [anon_sym_DQUOTE] = ACTIONS(556), + [anon_sym_BSLASH_BSLASH] = ACTIONS(556), + [aux_sym_IDENTIFIER_token1] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(556), }, - [63] = { + [60] = { [anon_sym_comptime] = ACTIONS(506), [anon_sym_extern] = ACTIONS(506), [anon_sym_inline] = ACTIONS(506), @@ -18057,402 +17764,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(506), [aux_sym_INTEGER_token4] = ACTIONS(506), [anon_sym_DQUOTE] = ACTIONS(508), - [aux_sym_LINESTRING_token1] = ACTIONS(508), + [anon_sym_BSLASH_BSLASH] = ACTIONS(508), [aux_sym_IDENTIFIER_token1] = ACTIONS(506), [anon_sym_AT] = ACTIONS(508), }, - [64] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_else] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(570), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT_LT_PIPE] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(572), - [anon_sym_DASH_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_PIPE] = ACTIONS(572), - [anon_sym_DASH_PIPE] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(572), - [anon_sym_STAR_PIPE] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), - }, - [65] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2196), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(576), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [61] = { + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_GT] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(558), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LT_LT_PIPE] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(560), + [anon_sym_DASH_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_PIPE] = ACTIONS(560), + [anon_sym_DASH_PIPE] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(560), + [anon_sym_STAR_PIPE] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), }, - [66] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2152), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(580), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), + [62] = { + [anon_sym_comptime] = ACTIONS(514), + [anon_sym_extern] = ACTIONS(514), + [anon_sym_inline] = ACTIONS(514), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_fn] = ACTIONS(514), + [anon_sym_BANG] = ACTIONS(514), + [anon_sym_const] = ACTIONS(514), + [anon_sym_var] = ACTIONS(514), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_nosuspend] = ACTIONS(514), + [anon_sym_defer] = ACTIONS(514), + [anon_sym_suspend] = ACTIONS(514), + [anon_sym_errdefer] = ACTIONS(514), + [anon_sym_or] = ACTIONS(518), + [anon_sym_and] = ACTIONS(518), + [anon_sym_break] = ACTIONS(514), + [anon_sym_continue] = ACTIONS(514), + [anon_sym_resume] = ACTIONS(514), + [anon_sym_return] = ACTIONS(514), + [anon_sym_LBRACE] = ACTIONS(520), + [anon_sym_RBRACE] = ACTIONS(520), + [anon_sym_async] = ACTIONS(514), + [anon_sym_DOT] = ACTIONS(514), + [anon_sym_error] = ACTIONS(514), + [anon_sym_false] = ACTIONS(514), + [anon_sym_null] = ACTIONS(514), + [anon_sym_anyframe] = ACTIONS(514), + [anon_sym_true] = ACTIONS(514), + [anon_sym_undefined] = ACTIONS(514), + [anon_sym_unreachable] = ACTIONS(514), + [sym_BuildinTypeExpr] = ACTIONS(514), + [anon_sym_packed] = ACTIONS(514), + [anon_sym_LPAREN] = ACTIONS(520), + [anon_sym_switch] = ACTIONS(514), + [anon_sym_asm] = ACTIONS(514), + [anon_sym_LBRACK] = ACTIONS(520), + [anon_sym_if] = ACTIONS(514), + [anon_sym_while] = ACTIONS(514), + [anon_sym_for] = ACTIONS(514), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(514), + [anon_sym_STAR_EQ] = ACTIONS(516), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(516), + [anon_sym_SLASH_EQ] = ACTIONS(516), + [anon_sym_PERCENT_EQ] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(516), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(516), + [anon_sym_DASH_EQ] = ACTIONS(516), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(516), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(516), + [anon_sym_GT_GT_EQ] = ACTIONS(516), + [anon_sym_AMP_EQ] = ACTIONS(516), + [anon_sym_CARET_EQ] = ACTIONS(516), + [anon_sym_PIPE_EQ] = ACTIONS(516), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(516), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(516), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(514), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_orelse] = ACTIONS(518), + [anon_sym_catch] = ACTIONS(518), + [anon_sym_LT_LT] = ACTIONS(518), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_LT_LT_PIPE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(514), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_PLUS_PERCENT] = ACTIONS(518), + [anon_sym_DASH_PERCENT] = ACTIONS(514), + [anon_sym_PLUS_PIPE] = ACTIONS(518), + [anon_sym_DASH_PIPE] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_STAR_STAR] = ACTIONS(520), + [anon_sym_STAR_PERCENT] = ACTIONS(518), + [anon_sym_STAR_PIPE] = ACTIONS(518), + [anon_sym_TILDE] = ACTIONS(520), + [anon_sym_try] = ACTIONS(514), + [anon_sym_await] = ACTIONS(514), + [anon_sym_QMARK] = ACTIONS(520), + [anon_sym_DOT_STAR] = ACTIONS(516), + [anon_sym_DOT_QMARK] = ACTIONS(516), + [anon_sym_struct] = ACTIONS(514), + [anon_sym_opaque] = ACTIONS(514), + [anon_sym_enum] = ACTIONS(514), + [anon_sym_union] = ACTIONS(514), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(520), + [aux_sym_FLOAT_token1] = ACTIONS(520), + [aux_sym_FLOAT_token2] = ACTIONS(520), + [aux_sym_FLOAT_token3] = ACTIONS(520), + [aux_sym_FLOAT_token4] = ACTIONS(520), + [aux_sym_INTEGER_token1] = ACTIONS(520), + [aux_sym_INTEGER_token2] = ACTIONS(520), + [aux_sym_INTEGER_token3] = ACTIONS(514), + [aux_sym_INTEGER_token4] = ACTIONS(514), + [anon_sym_DQUOTE] = ACTIONS(520), + [anon_sym_BSLASH_BSLASH] = ACTIONS(520), + [aux_sym_IDENTIFIER_token1] = ACTIONS(514), + [anon_sym_AT] = ACTIONS(520), }, - [67] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [63] = { + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_RBRACK] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(562), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_LT_LT_PIPE] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(564), + [anon_sym_DASH_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_PIPE] = ACTIONS(564), + [anon_sym_DASH_PIPE] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(564), + [anon_sym_STAR_PIPE] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), + }, + [64] = { + [anon_sym_comptime] = ACTIONS(566), + [anon_sym_extern] = ACTIONS(566), + [anon_sym_inline] = ACTIONS(566), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_fn] = ACTIONS(566), + [anon_sym_BANG] = ACTIONS(566), + [anon_sym_const] = ACTIONS(566), + [anon_sym_var] = ACTIONS(566), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_nosuspend] = ACTIONS(566), + [anon_sym_defer] = ACTIONS(566), + [anon_sym_suspend] = ACTIONS(566), + [anon_sym_errdefer] = ACTIONS(566), + [anon_sym_or] = ACTIONS(570), + [anon_sym_and] = ACTIONS(570), + [anon_sym_break] = ACTIONS(566), + [anon_sym_continue] = ACTIONS(566), + [anon_sym_resume] = ACTIONS(566), + [anon_sym_return] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_RBRACE] = ACTIONS(572), + [anon_sym_async] = ACTIONS(566), + [anon_sym_DOT] = ACTIONS(566), + [anon_sym_error] = ACTIONS(566), + [anon_sym_false] = ACTIONS(566), + [anon_sym_null] = ACTIONS(566), + [anon_sym_anyframe] = ACTIONS(566), + [anon_sym_true] = ACTIONS(566), + [anon_sym_undefined] = ACTIONS(566), + [anon_sym_unreachable] = ACTIONS(566), + [sym_BuildinTypeExpr] = ACTIONS(566), + [anon_sym_packed] = ACTIONS(566), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_switch] = ACTIONS(566), + [anon_sym_asm] = ACTIONS(566), + [anon_sym_LBRACK] = ACTIONS(572), + [anon_sym_if] = ACTIONS(566), + [anon_sym_while] = ACTIONS(566), + [anon_sym_for] = ACTIONS(566), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(566), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(568), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(566), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(570), + [anon_sym_catch] = ACTIONS(570), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(566), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_PLUS_PERCENT] = ACTIONS(570), + [anon_sym_DASH_PERCENT] = ACTIONS(566), + [anon_sym_PLUS_PIPE] = ACTIONS(570), + [anon_sym_DASH_PIPE] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_STAR_STAR] = ACTIONS(572), + [anon_sym_STAR_PERCENT] = ACTIONS(570), + [anon_sym_STAR_PIPE] = ACTIONS(570), + [anon_sym_TILDE] = ACTIONS(572), + [anon_sym_try] = ACTIONS(566), + [anon_sym_await] = ACTIONS(566), + [anon_sym_QMARK] = ACTIONS(572), + [anon_sym_DOT_STAR] = ACTIONS(568), + [anon_sym_DOT_QMARK] = ACTIONS(568), + [anon_sym_struct] = ACTIONS(566), + [anon_sym_opaque] = ACTIONS(566), + [anon_sym_enum] = ACTIONS(566), + [anon_sym_union] = ACTIONS(566), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(572), + [aux_sym_FLOAT_token1] = ACTIONS(572), + [aux_sym_FLOAT_token2] = ACTIONS(572), + [aux_sym_FLOAT_token3] = ACTIONS(572), + [aux_sym_FLOAT_token4] = ACTIONS(572), + [aux_sym_INTEGER_token1] = ACTIONS(572), + [aux_sym_INTEGER_token2] = ACTIONS(572), + [aux_sym_INTEGER_token3] = ACTIONS(566), + [aux_sym_INTEGER_token4] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(572), + [anon_sym_BSLASH_BSLASH] = ACTIONS(572), + [aux_sym_IDENTIFIER_token1] = ACTIONS(566), + [anon_sym_AT] = ACTIONS(572), + }, + [65] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2113), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(582), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(576), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -18494,74 +18313,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [68] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [66] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2219), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(584), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -18603,74 +18422,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [69] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [67] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2133), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2110), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(586), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -18712,74 +18531,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [70] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [68] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(588), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(584), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -18821,74 +18640,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [71] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [69] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(590), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(586), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -18930,74 +18749,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [72] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [70] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2130), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(592), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(588), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -19039,292 +18858,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [73] = { - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_SEMI] = ACTIONS(542), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_error] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), - [anon_sym_true] = ACTIONS(544), - [anon_sym_undefined] = ACTIONS(544), - [anon_sym_unreachable] = ACTIONS(544), - [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_STAR_EQ] = ACTIONS(542), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(542), - [anon_sym_SLASH_EQ] = ACTIONS(542), - [anon_sym_PERCENT_EQ] = ACTIONS(542), - [anon_sym_PLUS_EQ] = ACTIONS(542), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(542), - [anon_sym_DASH_EQ] = ACTIONS(542), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(542), - [anon_sym_LT_LT_EQ] = ACTIONS(542), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(542), - [anon_sym_GT_GT_EQ] = ACTIONS(542), - [anon_sym_AMP_EQ] = ACTIONS(542), - [anon_sym_CARET_EQ] = ACTIONS(542), - [anon_sym_PIPE_EQ] = ACTIONS(542), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(542), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(542), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_LT_LT_PIPE] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(544), - [anon_sym_DASH_PERCENT] = ACTIONS(544), - [anon_sym_PLUS_PIPE] = ACTIONS(544), - [anon_sym_DASH_PIPE] = ACTIONS(544), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(544), - [anon_sym_STAR_PIPE] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_DOT_DOT] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), - }, - [74] = { - [anon_sym_COMMA] = ACTIONS(526), - [anon_sym_comptime] = ACTIONS(528), - [anon_sym_extern] = ACTIONS(528), - [anon_sym_inline] = ACTIONS(528), - [anon_sym_SEMI] = ACTIONS(526), - [anon_sym_fn] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(528), - [anon_sym_COLON] = ACTIONS(526), - [anon_sym_EQ] = ACTIONS(528), - [anon_sym_nosuspend] = ACTIONS(528), - [anon_sym_or] = ACTIONS(528), - [anon_sym_and] = ACTIONS(528), - [anon_sym_break] = ACTIONS(528), - [anon_sym_continue] = ACTIONS(528), - [anon_sym_resume] = ACTIONS(528), - [anon_sym_return] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(526), - [anon_sym_async] = ACTIONS(528), - [anon_sym_DOT] = ACTIONS(528), - [anon_sym_error] = ACTIONS(528), - [anon_sym_false] = ACTIONS(528), - [anon_sym_null] = ACTIONS(528), - [anon_sym_anyframe] = ACTIONS(528), - [anon_sym_true] = ACTIONS(528), - [anon_sym_undefined] = ACTIONS(528), - [anon_sym_unreachable] = ACTIONS(528), - [sym_BuildinTypeExpr] = ACTIONS(528), - [anon_sym_packed] = ACTIONS(528), - [anon_sym_LPAREN] = ACTIONS(526), - [anon_sym_RPAREN] = ACTIONS(526), - [anon_sym_switch] = ACTIONS(528), - [anon_sym_asm] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(526), - [anon_sym_RBRACK] = ACTIONS(526), - [anon_sym_if] = ACTIONS(528), - [anon_sym_while] = ACTIONS(528), - [anon_sym_for] = ACTIONS(528), - [anon_sym_PIPE] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(526), - [anon_sym_STAR_EQ] = ACTIONS(526), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(526), - [anon_sym_SLASH_EQ] = ACTIONS(526), - [anon_sym_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_EQ] = ACTIONS(526), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(526), - [anon_sym_DASH_EQ] = ACTIONS(526), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(526), - [anon_sym_LT_LT_EQ] = ACTIONS(526), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(526), - [anon_sym_GT_GT_EQ] = ACTIONS(526), - [anon_sym_AMP_EQ] = ACTIONS(526), - [anon_sym_CARET_EQ] = ACTIONS(526), - [anon_sym_PIPE_EQ] = ACTIONS(526), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(526), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(526), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(526), - [anon_sym_EQ_EQ] = ACTIONS(526), - [anon_sym_BANG_EQ] = ACTIONS(526), - [anon_sym_LT] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(528), - [anon_sym_LT_EQ] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(526), - [anon_sym_AMP] = ACTIONS(528), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_orelse] = ACTIONS(528), - [anon_sym_catch] = ACTIONS(528), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(528), - [anon_sym_LT_LT_PIPE] = ACTIONS(528), - [anon_sym_PLUS] = ACTIONS(528), - [anon_sym_DASH] = ACTIONS(528), - [anon_sym_PLUS_PLUS] = ACTIONS(526), - [anon_sym_PLUS_PERCENT] = ACTIONS(528), - [anon_sym_DASH_PERCENT] = ACTIONS(528), - [anon_sym_PLUS_PIPE] = ACTIONS(528), - [anon_sym_DASH_PIPE] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(526), - [anon_sym_SLASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR_STAR] = ACTIONS(526), - [anon_sym_STAR_PERCENT] = ACTIONS(528), - [anon_sym_STAR_PIPE] = ACTIONS(528), - [anon_sym_TILDE] = ACTIONS(526), - [anon_sym_try] = ACTIONS(528), - [anon_sym_await] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_DOT_DOT] = ACTIONS(526), - [anon_sym_struct] = ACTIONS(528), - [anon_sym_opaque] = ACTIONS(528), - [anon_sym_enum] = ACTIONS(528), - [anon_sym_union] = ACTIONS(528), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(526), - [aux_sym_FLOAT_token1] = ACTIONS(526), - [aux_sym_FLOAT_token2] = ACTIONS(526), - [aux_sym_FLOAT_token3] = ACTIONS(526), - [aux_sym_FLOAT_token4] = ACTIONS(526), - [aux_sym_INTEGER_token1] = ACTIONS(526), - [aux_sym_INTEGER_token2] = ACTIONS(526), - [aux_sym_INTEGER_token3] = ACTIONS(528), - [aux_sym_INTEGER_token4] = ACTIONS(528), - [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), - [aux_sym_IDENTIFIER_token1] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(526), - }, - [75] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [71] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(590), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -19366,183 +18967,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [76] = { - [anon_sym_comptime] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_inline] = ACTIONS(596), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_var] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(49), - [anon_sym_nosuspend] = ACTIONS(596), - [anon_sym_defer] = ACTIONS(596), - [anon_sym_suspend] = ACTIONS(596), - [anon_sym_errdefer] = ACTIONS(596), - [anon_sym_else] = ACTIONS(49), - [anon_sym_or] = ACTIONS(49), - [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_resume] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_async] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_error] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [anon_sym_null] = ACTIONS(596), - [anon_sym_anyframe] = ACTIONS(596), - [anon_sym_true] = ACTIONS(596), - [anon_sym_undefined] = ACTIONS(596), - [anon_sym_unreachable] = ACTIONS(596), - [sym_BuildinTypeExpr] = ACTIONS(596), - [anon_sym_packed] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_if] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(49), - [anon_sym_STAR_EQ] = ACTIONS(35), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(35), - [anon_sym_SLASH_EQ] = ACTIONS(35), - [anon_sym_PERCENT_EQ] = ACTIONS(35), - [anon_sym_PLUS_EQ] = ACTIONS(35), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(35), - [anon_sym_DASH_EQ] = ACTIONS(35), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(35), - [anon_sym_LT_LT_EQ] = ACTIONS(35), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(35), - [anon_sym_GT_GT_EQ] = ACTIONS(35), - [anon_sym_AMP_EQ] = ACTIONS(35), - [anon_sym_CARET_EQ] = ACTIONS(35), - [anon_sym_PIPE_EQ] = ACTIONS(35), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(35), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(35), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_orelse] = ACTIONS(49), - [anon_sym_catch] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_LT_LT_PIPE] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(49), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_PLUS_PERCENT] = ACTIONS(49), - [anon_sym_DASH_PERCENT] = ACTIONS(49), - [anon_sym_PLUS_PIPE] = ACTIONS(49), - [anon_sym_DASH_PIPE] = ACTIONS(49), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PERCENT] = ACTIONS(49), - [anon_sym_STAR_STAR] = ACTIONS(35), - [anon_sym_STAR_PERCENT] = ACTIONS(49), - [anon_sym_STAR_PIPE] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_try] = ACTIONS(596), - [anon_sym_await] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_opaque] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(598), - [aux_sym_FLOAT_token1] = ACTIONS(598), - [aux_sym_FLOAT_token2] = ACTIONS(598), - [aux_sym_FLOAT_token3] = ACTIONS(598), - [aux_sym_FLOAT_token4] = ACTIONS(598), - [aux_sym_INTEGER_token1] = ACTIONS(598), - [aux_sym_INTEGER_token2] = ACTIONS(598), - [aux_sym_INTEGER_token3] = ACTIONS(596), - [aux_sym_INTEGER_token4] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [aux_sym_LINESTRING_token1] = ACTIONS(598), - [aux_sym_IDENTIFIER_token1] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(598), - }, - [77] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [72] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2120), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(592), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -19584,183 +19076,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [78] = { - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_COLON] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(566), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_LT_LT_PIPE] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(568), - [anon_sym_DASH_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_PIPE] = ACTIONS(568), - [anon_sym_DASH_PIPE] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(568), - [anon_sym_STAR_PIPE] = ACTIONS(568), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), - }, - [79] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [73] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2131), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(602), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(594), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -19802,74 +19185,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [80] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [74] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2208), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(604), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(596), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -19911,401 +19294,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [81] = { - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_COLON] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_STAR_EQ] = ACTIONS(538), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(538), - [anon_sym_SLASH_EQ] = ACTIONS(538), - [anon_sym_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(538), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(538), - [anon_sym_DASH_EQ] = ACTIONS(538), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(538), - [anon_sym_LT_LT_EQ] = ACTIONS(538), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(538), - [anon_sym_GT_GT_EQ] = ACTIONS(538), - [anon_sym_AMP_EQ] = ACTIONS(538), - [anon_sym_CARET_EQ] = ACTIONS(538), - [anon_sym_PIPE_EQ] = ACTIONS(538), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(538), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(540), - [anon_sym_LT_LT_PIPE] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(540), - [anon_sym_DASH_PERCENT] = ACTIONS(540), - [anon_sym_PLUS_PIPE] = ACTIONS(540), - [anon_sym_DASH_PIPE] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(540), - [anon_sym_STAR_PIPE] = ACTIONS(540), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), - }, - [82] = { - [sym_FnProto] = STATE(719), - [sym_BlockExprStatement] = STATE(904), - [sym_BlockExpr] = STATE(903), - [sym_AssignExpr] = STATE(2346), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(95), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1918), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_Payload] = STATE(97), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [83] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(570), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT_LT_PIPE] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(572), - [anon_sym_DASH_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_PIPE] = ACTIONS(572), - [anon_sym_DASH_PIPE] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(572), - [anon_sym_STAR_PIPE] = ACTIONS(572), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), - }, - [84] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [75] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2116), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(608), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(598), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -20347,74 +19403,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [85] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [76] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(600), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -20456,74 +19512,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [86] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [77] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(612), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(602), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -20565,183 +19621,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [87] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2172), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(614), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [78] = { + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_GT] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(558), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LT_LT_PIPE] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(560), + [anon_sym_DASH_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_PIPE] = ACTIONS(560), + [anon_sym_DASH_PIPE] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(560), + [anon_sym_STAR_PIPE] = ACTIONS(560), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), }, - [88] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [79] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(604), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -20783,74 +19839,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [89] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [80] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(618), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -20892,74 +19948,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [90] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [81] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(608), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -21001,74 +20057,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [91] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [82] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2184), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(622), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(610), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -21110,74 +20166,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [92] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [83] = { + [anon_sym_COMMA] = ACTIONS(526), + [anon_sym_comptime] = ACTIONS(528), + [anon_sym_extern] = ACTIONS(528), + [anon_sym_inline] = ACTIONS(528), + [anon_sym_SEMI] = ACTIONS(526), + [anon_sym_fn] = ACTIONS(528), + [anon_sym_BANG] = ACTIONS(528), + [anon_sym_COLON] = ACTIONS(526), + [anon_sym_EQ] = ACTIONS(528), + [anon_sym_nosuspend] = ACTIONS(528), + [anon_sym_or] = ACTIONS(528), + [anon_sym_and] = ACTIONS(528), + [anon_sym_break] = ACTIONS(528), + [anon_sym_continue] = ACTIONS(528), + [anon_sym_resume] = ACTIONS(528), + [anon_sym_return] = ACTIONS(528), + [anon_sym_LBRACE] = ACTIONS(526), + [anon_sym_RBRACE] = ACTIONS(526), + [anon_sym_async] = ACTIONS(528), + [anon_sym_DOT] = ACTIONS(528), + [anon_sym_error] = ACTIONS(528), + [anon_sym_false] = ACTIONS(528), + [anon_sym_null] = ACTIONS(528), + [anon_sym_anyframe] = ACTIONS(528), + [anon_sym_true] = ACTIONS(528), + [anon_sym_undefined] = ACTIONS(528), + [anon_sym_unreachable] = ACTIONS(528), + [sym_BuildinTypeExpr] = ACTIONS(528), + [anon_sym_packed] = ACTIONS(528), + [anon_sym_LPAREN] = ACTIONS(526), + [anon_sym_RPAREN] = ACTIONS(526), + [anon_sym_switch] = ACTIONS(528), + [anon_sym_asm] = ACTIONS(528), + [anon_sym_LBRACK] = ACTIONS(526), + [anon_sym_RBRACK] = ACTIONS(526), + [anon_sym_if] = ACTIONS(528), + [anon_sym_while] = ACTIONS(528), + [anon_sym_for] = ACTIONS(528), + [anon_sym_PIPE] = ACTIONS(528), + [anon_sym_STAR] = ACTIONS(528), + [anon_sym_EQ_GT] = ACTIONS(526), + [anon_sym_STAR_EQ] = ACTIONS(526), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(526), + [anon_sym_SLASH_EQ] = ACTIONS(526), + [anon_sym_PERCENT_EQ] = ACTIONS(526), + [anon_sym_PLUS_EQ] = ACTIONS(526), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(526), + [anon_sym_DASH_EQ] = ACTIONS(526), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(526), + [anon_sym_LT_LT_EQ] = ACTIONS(526), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(526), + [anon_sym_GT_GT_EQ] = ACTIONS(526), + [anon_sym_AMP_EQ] = ACTIONS(526), + [anon_sym_CARET_EQ] = ACTIONS(526), + [anon_sym_PIPE_EQ] = ACTIONS(526), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(526), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(526), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(526), + [anon_sym_EQ_EQ] = ACTIONS(526), + [anon_sym_BANG_EQ] = ACTIONS(526), + [anon_sym_LT] = ACTIONS(528), + [anon_sym_GT] = ACTIONS(528), + [anon_sym_LT_EQ] = ACTIONS(526), + [anon_sym_GT_EQ] = ACTIONS(526), + [anon_sym_AMP] = ACTIONS(528), + [anon_sym_CARET] = ACTIONS(528), + [anon_sym_orelse] = ACTIONS(528), + [anon_sym_catch] = ACTIONS(528), + [anon_sym_LT_LT] = ACTIONS(528), + [anon_sym_GT_GT] = ACTIONS(528), + [anon_sym_LT_LT_PIPE] = ACTIONS(528), + [anon_sym_PLUS] = ACTIONS(528), + [anon_sym_DASH] = ACTIONS(528), + [anon_sym_PLUS_PLUS] = ACTIONS(526), + [anon_sym_PLUS_PERCENT] = ACTIONS(528), + [anon_sym_DASH_PERCENT] = ACTIONS(528), + [anon_sym_PLUS_PIPE] = ACTIONS(528), + [anon_sym_DASH_PIPE] = ACTIONS(528), + [anon_sym_PIPE_PIPE] = ACTIONS(526), + [anon_sym_SLASH] = ACTIONS(528), + [anon_sym_PERCENT] = ACTIONS(528), + [anon_sym_STAR_STAR] = ACTIONS(526), + [anon_sym_STAR_PERCENT] = ACTIONS(528), + [anon_sym_STAR_PIPE] = ACTIONS(528), + [anon_sym_TILDE] = ACTIONS(526), + [anon_sym_try] = ACTIONS(528), + [anon_sym_await] = ACTIONS(528), + [anon_sym_QMARK] = ACTIONS(526), + [anon_sym_DOT_DOT] = ACTIONS(526), + [anon_sym_struct] = ACTIONS(528), + [anon_sym_opaque] = ACTIONS(528), + [anon_sym_enum] = ACTIONS(528), + [anon_sym_union] = ACTIONS(528), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(526), + [aux_sym_FLOAT_token1] = ACTIONS(526), + [aux_sym_FLOAT_token2] = ACTIONS(526), + [aux_sym_FLOAT_token3] = ACTIONS(526), + [aux_sym_FLOAT_token4] = ACTIONS(526), + [aux_sym_INTEGER_token1] = ACTIONS(526), + [aux_sym_INTEGER_token2] = ACTIONS(526), + [aux_sym_INTEGER_token3] = ACTIONS(528), + [aux_sym_INTEGER_token4] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), + [aux_sym_IDENTIFIER_token1] = ACTIONS(528), + [anon_sym_AT] = ACTIONS(526), + }, + [84] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_RBRACE] = ACTIONS(624), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(612), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -21219,181 +20384,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [93] = { - [anon_sym_comptime] = ACTIONS(626), - [anon_sym_extern] = ACTIONS(626), - [anon_sym_inline] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(626), - [anon_sym_BANG] = ACTIONS(626), - [anon_sym_const] = ACTIONS(626), - [anon_sym_var] = ACTIONS(626), - [anon_sym_EQ] = ACTIONS(49), - [anon_sym_nosuspend] = ACTIONS(626), - [anon_sym_defer] = ACTIONS(626), - [anon_sym_suspend] = ACTIONS(626), - [anon_sym_errdefer] = ACTIONS(626), - [anon_sym_or] = ACTIONS(49), - [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(626), - [anon_sym_continue] = ACTIONS(626), - [anon_sym_resume] = ACTIONS(626), - [anon_sym_return] = ACTIONS(626), - [anon_sym_LBRACE] = ACTIONS(628), - [anon_sym_RBRACE] = ACTIONS(628), - [anon_sym_async] = ACTIONS(626), - [anon_sym_DOT] = ACTIONS(628), - [anon_sym_error] = ACTIONS(626), - [anon_sym_false] = ACTIONS(626), - [anon_sym_null] = ACTIONS(626), - [anon_sym_anyframe] = ACTIONS(626), - [anon_sym_true] = ACTIONS(626), - [anon_sym_undefined] = ACTIONS(626), - [anon_sym_unreachable] = ACTIONS(626), - [sym_BuildinTypeExpr] = ACTIONS(626), - [anon_sym_packed] = ACTIONS(626), - [anon_sym_LPAREN] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(626), - [anon_sym_asm] = ACTIONS(626), - [anon_sym_LBRACK] = ACTIONS(628), - [anon_sym_if] = ACTIONS(626), - [anon_sym_while] = ACTIONS(626), - [anon_sym_for] = ACTIONS(626), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_STAR] = ACTIONS(626), - [anon_sym_STAR_EQ] = ACTIONS(35), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(35), - [anon_sym_SLASH_EQ] = ACTIONS(35), - [anon_sym_PERCENT_EQ] = ACTIONS(35), - [anon_sym_PLUS_EQ] = ACTIONS(35), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(35), - [anon_sym_DASH_EQ] = ACTIONS(35), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(35), - [anon_sym_LT_LT_EQ] = ACTIONS(35), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(35), - [anon_sym_GT_GT_EQ] = ACTIONS(35), - [anon_sym_AMP_EQ] = ACTIONS(35), - [anon_sym_CARET_EQ] = ACTIONS(35), - [anon_sym_PIPE_EQ] = ACTIONS(35), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(35), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(35), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(35), - [anon_sym_EQ_EQ] = ACTIONS(35), - [anon_sym_BANG_EQ] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(35), - [anon_sym_GT_EQ] = ACTIONS(35), - [anon_sym_AMP] = ACTIONS(626), - [anon_sym_CARET] = ACTIONS(49), - [anon_sym_orelse] = ACTIONS(49), - [anon_sym_catch] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_LT_LT_PIPE] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(626), - [anon_sym_PLUS_PLUS] = ACTIONS(35), - [anon_sym_PLUS_PERCENT] = ACTIONS(49), - [anon_sym_DASH_PERCENT] = ACTIONS(626), - [anon_sym_PLUS_PIPE] = ACTIONS(49), - [anon_sym_DASH_PIPE] = ACTIONS(49), - [anon_sym_PIPE_PIPE] = ACTIONS(35), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PERCENT] = ACTIONS(49), - [anon_sym_STAR_STAR] = ACTIONS(628), - [anon_sym_STAR_PERCENT] = ACTIONS(49), - [anon_sym_STAR_PIPE] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(628), - [anon_sym_try] = ACTIONS(626), - [anon_sym_await] = ACTIONS(626), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_struct] = ACTIONS(626), - [anon_sym_opaque] = ACTIONS(626), - [anon_sym_enum] = ACTIONS(626), - [anon_sym_union] = ACTIONS(626), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(628), - [aux_sym_FLOAT_token1] = ACTIONS(628), - [aux_sym_FLOAT_token2] = ACTIONS(628), - [aux_sym_FLOAT_token3] = ACTIONS(628), - [aux_sym_FLOAT_token4] = ACTIONS(628), - [aux_sym_INTEGER_token1] = ACTIONS(628), - [aux_sym_INTEGER_token2] = ACTIONS(628), - [aux_sym_INTEGER_token3] = ACTIONS(626), - [aux_sym_INTEGER_token4] = ACTIONS(626), - [anon_sym_DQUOTE] = ACTIONS(628), - [aux_sym_LINESTRING_token1] = ACTIONS(628), - [aux_sym_IDENTIFIER_token1] = ACTIONS(626), - [anon_sym_AT] = ACTIONS(628), - }, - [94] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [85] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchProng] = STATE(2229), - [sym_SwitchCase] = STATE(2333), - [sym_SwitchItem] = STATE(2163), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(295), [anon_sym_else] = ACTIONS(574), - [anon_sym_break] = ACTIONS(279), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(614), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -21435,50 +20493,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [95] = { - [anon_sym_comptime] = ACTIONS(596), - [anon_sym_extern] = ACTIONS(596), - [anon_sym_inline] = ACTIONS(596), + [86] = { + [anon_sym_comptime] = ACTIONS(616), + [anon_sym_extern] = ACTIONS(616), + [anon_sym_inline] = ACTIONS(616), [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_fn] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(596), - [anon_sym_const] = ACTIONS(596), - [anon_sym_var] = ACTIONS(596), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_var] = ACTIONS(616), [anon_sym_EQ] = ACTIONS(49), - [anon_sym_nosuspend] = ACTIONS(596), - [anon_sym_defer] = ACTIONS(596), - [anon_sym_suspend] = ACTIONS(596), - [anon_sym_errdefer] = ACTIONS(596), + [anon_sym_nosuspend] = ACTIONS(616), + [anon_sym_defer] = ACTIONS(616), + [anon_sym_suspend] = ACTIONS(616), + [anon_sym_errdefer] = ACTIONS(616), + [anon_sym_else] = ACTIONS(49), [anon_sym_or] = ACTIONS(49), [anon_sym_and] = ACTIONS(49), - [anon_sym_break] = ACTIONS(596), - [anon_sym_continue] = ACTIONS(596), - [anon_sym_resume] = ACTIONS(596), - [anon_sym_return] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(598), - [anon_sym_async] = ACTIONS(596), - [anon_sym_DOT] = ACTIONS(598), - [anon_sym_error] = ACTIONS(596), - [anon_sym_false] = ACTIONS(596), - [anon_sym_null] = ACTIONS(596), - [anon_sym_anyframe] = ACTIONS(596), - [anon_sym_true] = ACTIONS(596), - [anon_sym_undefined] = ACTIONS(596), - [anon_sym_unreachable] = ACTIONS(596), - [sym_BuildinTypeExpr] = ACTIONS(596), - [anon_sym_packed] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(598), - [anon_sym_switch] = ACTIONS(596), - [anon_sym_asm] = ACTIONS(596), - [anon_sym_LBRACK] = ACTIONS(598), - [anon_sym_if] = ACTIONS(596), - [anon_sym_while] = ACTIONS(596), - [anon_sym_for] = ACTIONS(596), + [anon_sym_break] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_resume] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_async] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_error] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [anon_sym_null] = ACTIONS(616), + [anon_sym_anyframe] = ACTIONS(616), + [anon_sym_true] = ACTIONS(616), + [anon_sym_undefined] = ACTIONS(616), + [anon_sym_unreachable] = ACTIONS(616), + [sym_BuildinTypeExpr] = ACTIONS(616), + [anon_sym_packed] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_asm] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), [anon_sym_PIPE] = ACTIONS(49), [anon_sym_STAR] = ACTIONS(49), [anon_sym_STAR_EQ] = ACTIONS(35), @@ -21524,108 +20583,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(35), [anon_sym_STAR_PERCENT] = ACTIONS(49), [anon_sym_STAR_PIPE] = ACTIONS(49), - [anon_sym_TILDE] = ACTIONS(598), - [anon_sym_try] = ACTIONS(596), - [anon_sym_await] = ACTIONS(596), - [anon_sym_QMARK] = ACTIONS(598), - [anon_sym_struct] = ACTIONS(596), - [anon_sym_opaque] = ACTIONS(596), - [anon_sym_enum] = ACTIONS(596), - [anon_sym_union] = ACTIONS(596), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(598), - [aux_sym_FLOAT_token1] = ACTIONS(598), - [aux_sym_FLOAT_token2] = ACTIONS(598), - [aux_sym_FLOAT_token3] = ACTIONS(598), - [aux_sym_FLOAT_token4] = ACTIONS(598), - [aux_sym_INTEGER_token1] = ACTIONS(598), - [aux_sym_INTEGER_token2] = ACTIONS(598), - [aux_sym_INTEGER_token3] = ACTIONS(596), - [aux_sym_INTEGER_token4] = ACTIONS(596), - [anon_sym_DQUOTE] = ACTIONS(598), - [aux_sym_LINESTRING_token1] = ACTIONS(598), - [aux_sym_IDENTIFIER_token1] = ACTIONS(596), - [anon_sym_AT] = ACTIONS(598), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_try] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_opaque] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(618), + [aux_sym_FLOAT_token1] = ACTIONS(618), + [aux_sym_FLOAT_token2] = ACTIONS(618), + [aux_sym_FLOAT_token3] = ACTIONS(618), + [aux_sym_FLOAT_token4] = ACTIONS(618), + [aux_sym_INTEGER_token1] = ACTIONS(618), + [aux_sym_INTEGER_token2] = ACTIONS(618), + [aux_sym_INTEGER_token3] = ACTIONS(616), + [aux_sym_INTEGER_token4] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_BSLASH_BSLASH] = ACTIONS(618), + [aux_sym_IDENTIFIER_token1] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(618), }, - [96] = { - [sym_FnProto] = STATE(719), - [sym_AssignExpr] = STATE(2243), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(981), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PtrPayload] = STATE(144), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [87] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2118), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_else] = ACTIONS(574), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(620), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(630), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -21640,70 +20701,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [97] = { - [sym_FnProto] = STATE(719), - [sym_BlockExprStatement] = STATE(893), - [sym_BlockExpr] = STATE(903), - [sym_AssignExpr] = STATE(2346), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(95), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [88] = { + [sym_FnProto] = STATE(716), + [sym_BlockExprStatement] = STATE(874), + [sym_BlockExpr] = STATE(872), + [sym_AssignExpr] = STATE(2365), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(93), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1918), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1917), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_Payload] = STATE(96), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -21716,7 +20778,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -21733,6 +20795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(622), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -21757,85 +20820,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [98] = { - [sym_FnProto] = STATE(719), - [sym_BlockExprStatement] = STATE(904), - [sym_BlockExpr] = STATE(903), - [sym_AssignExpr] = STATE(2346), - [sym__Expr] = STATE(1201), - [sym_BinaryExpr] = STATE(1201), - [sym_UnaryExpr] = STATE(1201), - [sym__PrimaryExpr] = STATE(1201), - [sym_IfExpr] = STATE(1201), - [sym_Block] = STATE(95), - [sym_LoopExpr] = STATE(1201), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1201), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1201), - [sym_BlockLabel] = STATE(1918), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [89] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_else] = ACTIONS(574), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_RBRACE] = ACTIONS(624), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -21854,293 +20919,626 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [99] = { - [sym_FnProto] = STATE(719), - [sym_BlockExprStatement] = STATE(904), - [sym_BlockExpr] = STATE(903), - [sym_AssignExpr] = STATE(2346), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(95), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1918), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(335), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [90] = { + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_COLON] = ACTIONS(530), + [anon_sym_EQ] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_RPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_STAR_EQ] = ACTIONS(530), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(530), + [anon_sym_SLASH_EQ] = ACTIONS(530), + [anon_sym_PERCENT_EQ] = ACTIONS(530), + [anon_sym_PLUS_EQ] = ACTIONS(530), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(530), + [anon_sym_DASH_EQ] = ACTIONS(530), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(530), + [anon_sym_LT_LT_EQ] = ACTIONS(530), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(530), + [anon_sym_GT_GT_EQ] = ACTIONS(530), + [anon_sym_AMP_EQ] = ACTIONS(530), + [anon_sym_CARET_EQ] = ACTIONS(530), + [anon_sym_PIPE_EQ] = ACTIONS(530), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(530), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(530), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(532), + [anon_sym_CARET] = ACTIONS(532), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(532), + [anon_sym_LT_LT_PIPE] = ACTIONS(532), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(532), + [anon_sym_DASH_PERCENT] = ACTIONS(532), + [anon_sym_PLUS_PIPE] = ACTIONS(532), + [anon_sym_DASH_PIPE] = ACTIONS(532), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(532), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(532), + [anon_sym_STAR_PIPE] = ACTIONS(532), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), }, - [100] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1523), - [sym_BinaryExpr] = STATE(1523), - [sym_UnaryExpr] = STATE(1523), - [sym__PrimaryExpr] = STATE(1523), - [sym_IfExpr] = STATE(1523), - [sym_Block] = STATE(1523), - [sym_LoopExpr] = STATE(1523), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1523), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1523), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2079), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(632), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(634), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), + [91] = { + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_STAR_EQ] = ACTIONS(522), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(522), + [anon_sym_SLASH_EQ] = ACTIONS(522), + [anon_sym_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(522), + [anon_sym_LT_LT_EQ] = ACTIONS(522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(522), + [anon_sym_GT_GT_EQ] = ACTIONS(522), + [anon_sym_AMP_EQ] = ACTIONS(522), + [anon_sym_CARET_EQ] = ACTIONS(522), + [anon_sym_PIPE_EQ] = ACTIONS(522), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(522), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_CARET] = ACTIONS(524), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_LT_LT_PIPE] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(524), + [anon_sym_DASH_PERCENT] = ACTIONS(524), + [anon_sym_PLUS_PIPE] = ACTIONS(524), + [anon_sym_DASH_PIPE] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(524), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(524), + [anon_sym_STAR_PIPE] = ACTIONS(524), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + }, + [92] = { + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_RBRACK] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(562), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_LT_LT_PIPE] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(564), + [anon_sym_DASH_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_PIPE] = ACTIONS(564), + [anon_sym_DASH_PIPE] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(564), + [anon_sym_STAR_PIPE] = ACTIONS(564), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), + }, + [93] = { + [anon_sym_comptime] = ACTIONS(616), + [anon_sym_extern] = ACTIONS(616), + [anon_sym_inline] = ACTIONS(616), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(616), + [anon_sym_BANG] = ACTIONS(616), + [anon_sym_const] = ACTIONS(616), + [anon_sym_var] = ACTIONS(616), + [anon_sym_EQ] = ACTIONS(49), + [anon_sym_nosuspend] = ACTIONS(616), + [anon_sym_defer] = ACTIONS(616), + [anon_sym_suspend] = ACTIONS(616), + [anon_sym_errdefer] = ACTIONS(616), + [anon_sym_or] = ACTIONS(49), + [anon_sym_and] = ACTIONS(49), + [anon_sym_break] = ACTIONS(616), + [anon_sym_continue] = ACTIONS(616), + [anon_sym_resume] = ACTIONS(616), + [anon_sym_return] = ACTIONS(616), + [anon_sym_LBRACE] = ACTIONS(618), + [anon_sym_RBRACE] = ACTIONS(618), + [anon_sym_async] = ACTIONS(616), + [anon_sym_DOT] = ACTIONS(618), + [anon_sym_error] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [anon_sym_null] = ACTIONS(616), + [anon_sym_anyframe] = ACTIONS(616), + [anon_sym_true] = ACTIONS(616), + [anon_sym_undefined] = ACTIONS(616), + [anon_sym_unreachable] = ACTIONS(616), + [sym_BuildinTypeExpr] = ACTIONS(616), + [anon_sym_packed] = ACTIONS(616), + [anon_sym_LPAREN] = ACTIONS(618), + [anon_sym_switch] = ACTIONS(616), + [anon_sym_asm] = ACTIONS(616), + [anon_sym_LBRACK] = ACTIONS(618), + [anon_sym_if] = ACTIONS(616), + [anon_sym_while] = ACTIONS(616), + [anon_sym_for] = ACTIONS(616), + [anon_sym_PIPE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(49), + [anon_sym_STAR_EQ] = ACTIONS(35), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(35), + [anon_sym_SLASH_EQ] = ACTIONS(35), + [anon_sym_PERCENT_EQ] = ACTIONS(35), + [anon_sym_PLUS_EQ] = ACTIONS(35), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(35), + [anon_sym_DASH_EQ] = ACTIONS(35), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(35), + [anon_sym_LT_LT_EQ] = ACTIONS(35), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(35), + [anon_sym_GT_GT_EQ] = ACTIONS(35), + [anon_sym_AMP_EQ] = ACTIONS(35), + [anon_sym_CARET_EQ] = ACTIONS(35), + [anon_sym_PIPE_EQ] = ACTIONS(35), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(35), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(35), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(49), + [anon_sym_GT] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(49), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_orelse] = ACTIONS(49), + [anon_sym_catch] = ACTIONS(49), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_GT_GT] = ACTIONS(49), + [anon_sym_LT_LT_PIPE] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_PLUS_PERCENT] = ACTIONS(49), + [anon_sym_DASH_PERCENT] = ACTIONS(49), + [anon_sym_PLUS_PIPE] = ACTIONS(49), + [anon_sym_DASH_PIPE] = ACTIONS(49), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(49), + [anon_sym_PERCENT] = ACTIONS(49), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_STAR_PERCENT] = ACTIONS(49), + [anon_sym_STAR_PIPE] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(618), + [anon_sym_try] = ACTIONS(616), + [anon_sym_await] = ACTIONS(616), + [anon_sym_QMARK] = ACTIONS(618), + [anon_sym_struct] = ACTIONS(616), + [anon_sym_opaque] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(616), + [anon_sym_union] = ACTIONS(616), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(618), + [aux_sym_FLOAT_token1] = ACTIONS(618), + [aux_sym_FLOAT_token2] = ACTIONS(618), + [aux_sym_FLOAT_token3] = ACTIONS(618), + [aux_sym_FLOAT_token4] = ACTIONS(618), + [aux_sym_INTEGER_token1] = ACTIONS(618), + [aux_sym_INTEGER_token2] = ACTIONS(618), + [aux_sym_INTEGER_token3] = ACTIONS(616), + [aux_sym_INTEGER_token4] = ACTIONS(616), + [anon_sym_DQUOTE] = ACTIONS(618), + [anon_sym_BSLASH_BSLASH] = ACTIONS(618), + [aux_sym_IDENTIFIER_token1] = ACTIONS(616), + [anon_sym_AT] = ACTIONS(618), + }, + [94] = { + [anon_sym_comptime] = ACTIONS(626), + [anon_sym_extern] = ACTIONS(626), + [anon_sym_inline] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_BANG] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_var] = ACTIONS(626), + [anon_sym_EQ] = ACTIONS(49), + [anon_sym_nosuspend] = ACTIONS(626), + [anon_sym_defer] = ACTIONS(626), + [anon_sym_suspend] = ACTIONS(626), + [anon_sym_errdefer] = ACTIONS(626), + [anon_sym_or] = ACTIONS(49), + [anon_sym_and] = ACTIONS(49), + [anon_sym_break] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_resume] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_LBRACE] = ACTIONS(628), + [anon_sym_RBRACE] = ACTIONS(628), + [anon_sym_async] = ACTIONS(626), + [anon_sym_DOT] = ACTIONS(628), + [anon_sym_error] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [anon_sym_null] = ACTIONS(626), + [anon_sym_anyframe] = ACTIONS(626), + [anon_sym_true] = ACTIONS(626), + [anon_sym_undefined] = ACTIONS(626), + [anon_sym_unreachable] = ACTIONS(626), + [sym_BuildinTypeExpr] = ACTIONS(626), + [anon_sym_packed] = ACTIONS(626), + [anon_sym_LPAREN] = ACTIONS(628), + [anon_sym_switch] = ACTIONS(626), + [anon_sym_asm] = ACTIONS(626), + [anon_sym_LBRACK] = ACTIONS(628), + [anon_sym_if] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(49), + [anon_sym_STAR] = ACTIONS(626), + [anon_sym_STAR_EQ] = ACTIONS(35), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(35), + [anon_sym_SLASH_EQ] = ACTIONS(35), + [anon_sym_PERCENT_EQ] = ACTIONS(35), + [anon_sym_PLUS_EQ] = ACTIONS(35), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(35), + [anon_sym_DASH_EQ] = ACTIONS(35), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(35), + [anon_sym_LT_LT_EQ] = ACTIONS(35), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(35), + [anon_sym_GT_GT_EQ] = ACTIONS(35), + [anon_sym_AMP_EQ] = ACTIONS(35), + [anon_sym_CARET_EQ] = ACTIONS(35), + [anon_sym_PIPE_EQ] = ACTIONS(35), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(35), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(35), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(49), + [anon_sym_GT] = ACTIONS(49), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_AMP] = ACTIONS(626), + [anon_sym_CARET] = ACTIONS(49), + [anon_sym_orelse] = ACTIONS(49), + [anon_sym_catch] = ACTIONS(49), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_GT_GT] = ACTIONS(49), + [anon_sym_LT_LT_PIPE] = ACTIONS(49), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(626), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_PLUS_PERCENT] = ACTIONS(49), + [anon_sym_DASH_PERCENT] = ACTIONS(626), + [anon_sym_PLUS_PIPE] = ACTIONS(49), + [anon_sym_DASH_PIPE] = ACTIONS(49), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(49), + [anon_sym_PERCENT] = ACTIONS(49), + [anon_sym_STAR_STAR] = ACTIONS(628), + [anon_sym_STAR_PERCENT] = ACTIONS(49), + [anon_sym_STAR_PIPE] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(628), + [anon_sym_try] = ACTIONS(626), + [anon_sym_await] = ACTIONS(626), + [anon_sym_QMARK] = ACTIONS(628), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_opaque] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(628), + [aux_sym_FLOAT_token1] = ACTIONS(628), + [aux_sym_FLOAT_token2] = ACTIONS(628), + [aux_sym_FLOAT_token3] = ACTIONS(628), + [aux_sym_FLOAT_token4] = ACTIONS(628), + [aux_sym_INTEGER_token1] = ACTIONS(628), + [aux_sym_INTEGER_token2] = ACTIONS(628), + [aux_sym_INTEGER_token3] = ACTIONS(626), + [aux_sym_INTEGER_token4] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(628), + [anon_sym_BSLASH_BSLASH] = ACTIONS(628), + [aux_sym_IDENTIFIER_token1] = ACTIONS(626), + [anon_sym_AT] = ACTIONS(628), }, - [101] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [95] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchItem] = STATE(2224), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchProng] = STATE(2258), + [sym_SwitchCase] = STATE(2362), + [sym_SwitchItem] = STATE(2135), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_else] = ACTIONS(574), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -22159,7 +21557,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), [anon_sym_STAR] = ACTIONS(341), - [anon_sym_EQ_GT] = ACTIONS(636), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), [anon_sym_DASH_PERCENT] = ACTIONS(85), @@ -22183,71 +21580,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [102] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1544), - [sym_BinaryExpr] = STATE(1544), - [sym_UnaryExpr] = STATE(1544), - [sym__PrimaryExpr] = STATE(1544), - [sym_IfExpr] = STATE(1544), - [sym_Block] = STATE(1544), - [sym_LoopExpr] = STATE(1544), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1544), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [96] = { + [sym_FnProto] = STATE(716), + [sym_BlockExprStatement] = STATE(890), + [sym_BlockExpr] = STATE(872), + [sym_AssignExpr] = STATE(2365), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(93), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1544), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1917), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(638), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(640), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22261,7 +21660,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(642), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -22289,58 +21687,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [103] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(912), - [sym_BinaryExpr] = STATE(912), - [sym_UnaryExpr] = STATE(912), - [sym__PrimaryExpr] = STATE(912), - [sym_IfExpr] = STATE(912), - [sym_Block] = STATE(912), - [sym_LoopExpr] = STATE(912), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(912), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [97] = { + [sym_FnProto] = STATE(716), + [sym_BlockExprStatement] = STATE(874), + [sym_BlockExpr] = STATE(872), + [sym_AssignExpr] = STATE(2365), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(93), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(912), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_Payload] = STATE(240), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1917), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -22351,9 +21751,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(55), [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(335), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22370,7 +21770,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -22395,71 +21794,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [104] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1538), - [sym_BinaryExpr] = STATE(1538), - [sym_UnaryExpr] = STATE(1538), - [sym__PrimaryExpr] = STATE(1538), - [sym_IfExpr] = STATE(1538), - [sym_Block] = STATE(1538), - [sym_LoopExpr] = STATE(1538), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1538), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [98] = { + [sym_FnProto] = STATE(716), + [sym_AssignExpr] = STATE(2243), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(969), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1538), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PtrPayload] = STATE(137), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(644), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(646), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22473,10 +21873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(648), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(630), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -22501,71 +21901,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [105] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1541), - [sym_BinaryExpr] = STATE(1541), - [sym_UnaryExpr] = STATE(1541), - [sym__PrimaryExpr] = STATE(1541), - [sym_IfExpr] = STATE(1541), - [sym_Block] = STATE(1541), - [sym_LoopExpr] = STATE(1541), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1541), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [99] = { + [sym_FnProto] = STATE(716), + [sym_BlockExprStatement] = STATE(874), + [sym_BlockExpr] = STATE(872), + [sym_AssignExpr] = STATE(2365), + [sym__Expr] = STATE(1141), + [sym_BinaryExpr] = STATE(1141), + [sym_UnaryExpr] = STATE(1141), + [sym__PrimaryExpr] = STATE(1141), + [sym_IfExpr] = STATE(1141), + [sym_Block] = STATE(93), + [sym_LoopExpr] = STATE(1141), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1141), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1541), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1141), + [sym_BlockLabel] = STATE(1917), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(650), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(652), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(335), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22579,7 +21981,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(654), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -22607,71 +22008,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [106] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1535), - [sym_BinaryExpr] = STATE(1535), - [sym_UnaryExpr] = STATE(1535), - [sym__PrimaryExpr] = STATE(1535), - [sym_IfExpr] = STATE(1535), - [sym_Block] = STATE(1535), - [sym_LoopExpr] = STATE(1535), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1535), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [100] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1486), + [sym_BinaryExpr] = STATE(1486), + [sym_UnaryExpr] = STATE(1486), + [sym__PrimaryExpr] = STATE(1486), + [sym_IfExpr] = STATE(1486), + [sym_Block] = STATE(1486), + [sym_LoopExpr] = STATE(1486), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1486), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1535), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1486), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_FieldInit] = STATE(2153), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(656), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(658), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(632), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22685,7 +22087,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(660), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -22713,177 +22114,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [107] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchItem] = STATE(2224), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_EQ_GT] = ACTIONS(662), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [108] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1532), - [sym_BinaryExpr] = STATE(1532), - [sym_UnaryExpr] = STATE(1532), - [sym__PrimaryExpr] = STATE(1532), - [sym_IfExpr] = STATE(1532), - [sym_Block] = STATE(1532), - [sym_LoopExpr] = STATE(1532), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1532), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [101] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1528), + [sym_BinaryExpr] = STATE(1528), + [sym_UnaryExpr] = STATE(1528), + [sym__PrimaryExpr] = STATE(1528), + [sym_IfExpr] = STATE(1528), + [sym_Block] = STATE(1528), + [sym_LoopExpr] = STATE(1528), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1528), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1532), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1528), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_Payload] = STATE(174), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(664), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(666), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(636), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -22897,11 +22192,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(668), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(670), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), [anon_sym_DASH_PERCENT] = ACTIONS(85), @@ -22925,72 +22220,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [109] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1491), - [sym_BinaryExpr] = STATE(1491), - [sym_UnaryExpr] = STATE(1491), - [sym__PrimaryExpr] = STATE(1491), - [sym_IfExpr] = STATE(1491), - [sym_Block] = STATE(1491), - [sym_LoopExpr] = STATE(1491), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1491), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [102] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1544), + [sym_BinaryExpr] = STATE(1544), + [sym_UnaryExpr] = STATE(1544), + [sym__PrimaryExpr] = STATE(1544), + [sym_IfExpr] = STATE(1544), + [sym_Block] = STATE(1544), + [sym_LoopExpr] = STATE(1544), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1544), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1491), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2179), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1544), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(638), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(640), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(672), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(634), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -23004,10 +22298,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(642), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR] = ACTIONS(644), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), [anon_sym_DASH_PERCENT] = ACTIONS(85), @@ -23031,88 +22326,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [110] = { - [sym_FnProto] = STATE(720), - [sym_BlockExpr] = STATE(841), - [sym_AssignExpr] = STATE(2105), - [sym__Expr] = STATE(1010), - [sym_BinaryExpr] = STATE(1010), - [sym_UnaryExpr] = STATE(1010), - [sym__PrimaryExpr] = STATE(1010), - [sym_IfExpr] = STATE(1010), - [sym_Block] = STATE(76), - [sym_LoopExpr] = STATE(1010), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1010), - [sym__TypeExpr] = STATE(781), - [sym_ErrorUnionExpr] = STATE(781), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1010), - [sym_BlockLabel] = STATE(1906), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [103] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1226), + [sym_BinaryExpr] = STATE(1226), + [sym_UnaryExpr] = STATE(1226), + [sym__PrimaryExpr] = STATE(1226), + [sym_IfExpr] = STATE(1226), + [sym_Block] = STATE(1226), + [sym_LoopExpr] = STATE(1226), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1226), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1226), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_Payload] = STATE(175), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(622), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -23127,98 +22422,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [111] = { - [sym_FnProto] = STATE(720), - [sym_BlockExpr] = STATE(842), - [sym_AssignExpr] = STATE(2103), - [sym__Expr] = STATE(1009), - [sym_BinaryExpr] = STATE(1009), - [sym_UnaryExpr] = STATE(1009), - [sym__PrimaryExpr] = STATE(1009), - [sym_IfExpr] = STATE(1009), - [sym_Block] = STATE(76), - [sym_LoopExpr] = STATE(1009), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1009), - [sym__TypeExpr] = STATE(783), - [sym_ErrorUnionExpr] = STATE(783), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1009), - [sym_BlockLabel] = STATE(1906), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [104] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1510), + [sym_BinaryExpr] = STATE(1510), + [sym_UnaryExpr] = STATE(1510), + [sym__PrimaryExpr] = STATE(1510), + [sym_IfExpr] = STATE(1510), + [sym_Block] = STATE(1510), + [sym_LoopExpr] = STATE(1510), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1510), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1510), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_Payload] = STATE(211), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(622), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -23233,90 +22528,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [112] = { - [sym_FnProto] = STATE(720), - [sym_BlockExpr] = STATE(840), - [sym_AssignExpr] = STATE(2101), - [sym__Expr] = STATE(1008), - [sym_BinaryExpr] = STATE(1008), - [sym_UnaryExpr] = STATE(1008), - [sym__PrimaryExpr] = STATE(1008), - [sym_IfExpr] = STATE(1008), - [sym_Block] = STATE(76), - [sym_LoopExpr] = STATE(1008), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1008), - [sym__TypeExpr] = STATE(785), - [sym_ErrorUnionExpr] = STATE(785), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [105] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1505), + [sym_BinaryExpr] = STATE(1505), + [sym_UnaryExpr] = STATE(1505), + [sym__PrimaryExpr] = STATE(1505), + [sym_IfExpr] = STATE(1505), + [sym_Block] = STATE(1505), + [sym_LoopExpr] = STATE(1505), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1505), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1008), - [sym_BlockLabel] = STATE(1906), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1505), + [sym_BlockLabel] = STATE(1919), + [sym_FieldInit] = STATE(2164), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(674), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(656), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -23349,71 +22644,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [113] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1531), - [sym_BinaryExpr] = STATE(1531), - [sym_UnaryExpr] = STATE(1531), - [sym__PrimaryExpr] = STATE(1531), - [sym_IfExpr] = STATE(1531), - [sym_Block] = STATE(1531), - [sym_LoopExpr] = STATE(1531), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1531), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [106] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1532), + [sym_BinaryExpr] = STATE(1532), + [sym_UnaryExpr] = STATE(1532), + [sym__PrimaryExpr] = STATE(1532), + [sym_IfExpr] = STATE(1532), + [sym_Block] = STATE(1532), + [sym_LoopExpr] = STATE(1532), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1532), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1531), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1532), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(678), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(680), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(658), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(660), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -23427,7 +22722,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(662), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -23455,164 +22750,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [114] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1503), - [sym_BinaryExpr] = STATE(1503), - [sym_UnaryExpr] = STATE(1503), - [sym__PrimaryExpr] = STATE(1503), - [sym_IfExpr] = STATE(1503), - [sym_Block] = STATE(1503), - [sym_LoopExpr] = STATE(1503), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1503), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1503), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_Payload] = STATE(211), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [115] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1506), - [sym_BinaryExpr] = STATE(1506), - [sym_UnaryExpr] = STATE(1506), - [sym__PrimaryExpr] = STATE(1506), - [sym_IfExpr] = STATE(1506), - [sym_Block] = STATE(1506), - [sym_LoopExpr] = STATE(1506), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1506), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [107] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1499), + [sym_BinaryExpr] = STATE(1499), + [sym_UnaryExpr] = STATE(1499), + [sym__PrimaryExpr] = STATE(1499), + [sym_IfExpr] = STATE(1499), + [sym_Block] = STATE(1499), + [sym_LoopExpr] = STATE(1499), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1499), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1506), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2086), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1499), + [sym_BlockLabel] = STATE(1919), + [sym_FieldInit] = STATE(2158), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -23624,7 +22813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(664), [anon_sym_async] = ACTIONS(127), [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), @@ -23667,71 +22856,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [116] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1534), - [sym_BinaryExpr] = STATE(1534), - [sym_UnaryExpr] = STATE(1534), - [sym__PrimaryExpr] = STATE(1534), - [sym_IfExpr] = STATE(1534), - [sym_Block] = STATE(1534), - [sym_LoopExpr] = STATE(1534), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1534), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [108] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1547), + [sym_BinaryExpr] = STATE(1547), + [sym_UnaryExpr] = STATE(1547), + [sym__PrimaryExpr] = STATE(1547), + [sym_IfExpr] = STATE(1547), + [sym_Block] = STATE(1547), + [sym_LoopExpr] = STATE(1547), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1547), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1534), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1547), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(688), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(666), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(668), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -23745,7 +22934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_RBRACK] = ACTIONS(690), + [anon_sym_RBRACK] = ACTIONS(670), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -23773,72 +22962,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [117] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1512), - [sym_BinaryExpr] = STATE(1512), - [sym_UnaryExpr] = STATE(1512), - [sym__PrimaryExpr] = STATE(1512), - [sym_IfExpr] = STATE(1512), - [sym_Block] = STATE(1512), - [sym_LoopExpr] = STATE(1512), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1512), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [109] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1539), + [sym_BinaryExpr] = STATE(1539), + [sym_UnaryExpr] = STATE(1539), + [sym__PrimaryExpr] = STATE(1539), + [sym_IfExpr] = STATE(1539), + [sym_Block] = STATE(1539), + [sym_LoopExpr] = STATE(1539), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1539), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1512), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2200), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1539), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(672), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(692), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(634), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -23852,6 +23040,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(676), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -23879,71 +23068,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [118] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1502), - [sym_BinaryExpr] = STATE(1502), - [sym_UnaryExpr] = STATE(1502), - [sym__PrimaryExpr] = STATE(1502), - [sym_IfExpr] = STATE(1502), - [sym_Block] = STATE(1502), - [sym_LoopExpr] = STATE(1502), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1502), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [110] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1533), + [sym_BinaryExpr] = STATE(1533), + [sym_UnaryExpr] = STATE(1533), + [sym__PrimaryExpr] = STATE(1533), + [sym_IfExpr] = STATE(1533), + [sym_Block] = STATE(1533), + [sym_LoopExpr] = STATE(1533), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1533), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1502), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_Payload] = STATE(213), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1533), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(694), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_COLON] = ACTIONS(678), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(680), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -23957,10 +23146,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(682), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -23985,195 +23174,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [119] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1500), - [sym_BinaryExpr] = STATE(1500), - [sym_UnaryExpr] = STATE(1500), - [sym__PrimaryExpr] = STATE(1500), - [sym_IfExpr] = STATE(1500), - [sym_Block] = STATE(1500), - [sym_LoopExpr] = STATE(1500), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1500), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1500), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2146), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [111] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchItem] = STATE(2233), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(696), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(634), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [120] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1220), - [sym_BinaryExpr] = STATE(1220), - [sym_UnaryExpr] = STATE(1220), - [sym__PrimaryExpr] = STATE(1220), - [sym_IfExpr] = STATE(1220), - [sym_Block] = STATE(1220), - [sym_LoopExpr] = STATE(1220), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1220), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1220), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_Payload] = STATE(214), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), - [anon_sym_PIPE] = ACTIONS(606), [anon_sym_STAR] = ACTIONS(341), + [anon_sym_EQ_GT] = ACTIONS(684), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), [anon_sym_DASH_PERCENT] = ACTIONS(85), @@ -24187,22 +23270,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [121] = { - [sym_FnProto] = STATE(719), + [112] = { + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(1517), [sym_BinaryExpr] = STATE(1517), [sym_UnaryExpr] = STATE(1517), @@ -24210,45 +23293,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1517), [sym_Block] = STATE(1517), [sym_LoopExpr] = STATE(1517), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(1517), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(1517), - [sym_BlockLabel] = STATE(1908), - [sym_FieldInit] = STATE(2217), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_BlockLabel] = STATE(1919), + [sym_FieldInit] = STATE(2083), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -24260,7 +23343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(686), [anon_sym_async] = ACTIONS(127), [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), @@ -24303,57 +23386,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [122] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1486), - [sym_BinaryExpr] = STATE(1486), - [sym_UnaryExpr] = STATE(1486), - [sym__PrimaryExpr] = STATE(1486), - [sym_IfExpr] = STATE(1486), - [sym_Block] = STATE(1486), - [sym_LoopExpr] = STATE(1486), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1486), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [113] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchItem] = STATE(2233), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_EQ_GT] = ACTIONS(688), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [114] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1521), + [sym_BinaryExpr] = STATE(1521), + [sym_UnaryExpr] = STATE(1521), + [sym__PrimaryExpr] = STATE(1521), + [sym_IfExpr] = STATE(1521), + [sym_Block] = STATE(1521), + [sym_LoopExpr] = STATE(1521), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1521), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1486), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1521), + [sym_BlockLabel] = STATE(1919), + [sym_FieldInit] = STATE(2082), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -24365,8 +23555,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(690), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -24377,7 +23568,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -24408,57 +23598,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [123] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1508), - [sym_BinaryExpr] = STATE(1508), - [sym_UnaryExpr] = STATE(1508), - [sym__PrimaryExpr] = STATE(1508), - [sym_IfExpr] = STATE(1508), - [sym_Block] = STATE(1508), - [sym_LoopExpr] = STATE(1508), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1508), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [115] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1525), + [sym_BinaryExpr] = STATE(1525), + [sym_UnaryExpr] = STATE(1525), + [sym__PrimaryExpr] = STATE(1525), + [sym_IfExpr] = STATE(1525), + [sym_Block] = STATE(1525), + [sym_LoopExpr] = STATE(1525), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1525), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1508), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1525), + [sym_BlockLabel] = STATE(1919), + [sym_FieldInit] = STATE(2209), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -24470,8 +23661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(634), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -24482,7 +23674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(712), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -24513,71 +23704,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [124] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [116] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1536), + [sym_BinaryExpr] = STATE(1536), + [sym_UnaryExpr] = STATE(1536), + [sym__PrimaryExpr] = STATE(1536), + [sym_IfExpr] = STATE(1536), + [sym_Block] = STATE(1536), + [sym_LoopExpr] = STATE(1536), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1536), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1536), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(694), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(696), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(714), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -24591,6 +23782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(698), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -24618,57 +23810,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [125] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [117] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(906), + [sym_BinaryExpr] = STATE(906), + [sym_UnaryExpr] = STATE(906), + [sym__PrimaryExpr] = STATE(906), + [sym_IfExpr] = STATE(906), + [sym_Block] = STATE(906), + [sym_LoopExpr] = STATE(906), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(906), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(906), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_Payload] = STATE(196), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -24681,7 +23874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -24692,13 +23885,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(716), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), + [anon_sym_PIPE] = ACTIONS(622), [anon_sym_STAR] = ACTIONS(341), [anon_sym_AMP] = ACTIONS(85), [anon_sym_DASH] = ACTIONS(45), @@ -24723,79 +23916,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [126] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [118] = { + [sym_FnProto] = STATE(717), + [sym_BlockExpr] = STATE(841), + [sym_AssignExpr] = STATE(2105), + [sym__Expr] = STATE(1022), + [sym_BinaryExpr] = STATE(1022), + [sym_UnaryExpr] = STATE(1022), + [sym__PrimaryExpr] = STATE(1022), + [sym_IfExpr] = STATE(1022), + [sym_Block] = STATE(86), + [sym_LoopExpr] = STATE(1022), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1022), + [sym__TypeExpr] = STATE(824), + [sym_ErrorUnionExpr] = STATE(824), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1022), + [sym_BlockLabel] = STATE(1912), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -24828,81 +24022,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [127] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1484), - [sym_BinaryExpr] = STATE(1484), - [sym_UnaryExpr] = STATE(1484), - [sym__PrimaryExpr] = STATE(1484), - [sym_IfExpr] = STATE(1484), - [sym_Block] = STATE(1484), - [sym_LoopExpr] = STATE(1484), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1484), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [119] = { + [sym_FnProto] = STATE(717), + [sym_BlockExpr] = STATE(842), + [sym_AssignExpr] = STATE(2103), + [sym__Expr] = STATE(1021), + [sym_BinaryExpr] = STATE(1021), + [sym_UnaryExpr] = STATE(1021), + [sym__PrimaryExpr] = STATE(1021), + [sym_IfExpr] = STATE(1021), + [sym_Block] = STATE(86), + [sym_LoopExpr] = STATE(1021), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1021), + [sym__TypeExpr] = STATE(827), + [sym_ErrorUnionExpr] = STATE(827), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1484), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1021), + [sym_BlockLabel] = STATE(1912), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -24933,81 +24128,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [128] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [120] = { + [sym_FnProto] = STATE(717), + [sym_BlockExpr] = STATE(843), + [sym_AssignExpr] = STATE(2101), + [sym__Expr] = STATE(1020), + [sym_BinaryExpr] = STATE(1020), + [sym_UnaryExpr] = STATE(1020), + [sym__PrimaryExpr] = STATE(1020), + [sym_IfExpr] = STATE(1020), + [sym_Block] = STATE(86), + [sym_LoopExpr] = STATE(1020), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1020), + [sym__TypeExpr] = STATE(830), + [sym_ErrorUnionExpr] = STATE(830), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1020), + [sym_BlockLabel] = STATE(1912), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(700), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(722), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25038,70 +24234,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [129] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [121] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1541), + [sym_BinaryExpr] = STATE(1541), + [sym_UnaryExpr] = STATE(1541), + [sym__PrimaryExpr] = STATE(1541), + [sym_IfExpr] = STATE(1541), + [sym_Block] = STATE(1541), + [sym_LoopExpr] = STATE(1541), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1541), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1541), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_COLON] = ACTIONS(704), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(706), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25112,10 +24309,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(724), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_RBRACK] = ACTIONS(708), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), [anon_sym_for] = ACTIONS(83), @@ -25143,57 +24340,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [130] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [122] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25205,9 +24402,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25218,6 +24414,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(710), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25248,57 +24445,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [131] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [123] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25310,9 +24507,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(712), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25353,57 +24550,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [132] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1504), - [sym_BinaryExpr] = STATE(1504), - [sym_UnaryExpr] = STATE(1504), - [sym__PrimaryExpr] = STATE(1504), - [sym_IfExpr] = STATE(1504), - [sym_Block] = STATE(1504), - [sym_LoopExpr] = STATE(1504), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1504), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [124] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1504), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25416,7 +24613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25427,7 +24624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_RPAREN] = ACTIONS(714), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25458,57 +24655,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [133] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [125] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25520,9 +24717,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25563,57 +24760,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [134] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [126] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25626,7 +24823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25637,7 +24834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_RPAREN] = ACTIONS(718), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25668,57 +24865,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [135] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [127] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1500), + [sym_BinaryExpr] = STATE(1500), + [sym_UnaryExpr] = STATE(1500), + [sym__PrimaryExpr] = STATE(1500), + [sym_IfExpr] = STATE(1500), + [sym_Block] = STATE(1500), + [sym_LoopExpr] = STATE(1500), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1500), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1500), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25731,7 +24928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25742,7 +24939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(720), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25773,57 +24970,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [136] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [128] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25835,9 +25032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25878,57 +25075,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [137] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [129] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -25940,8 +25137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -25952,7 +25150,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -25983,57 +25180,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [138] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [130] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26046,7 +25243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26057,7 +25254,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_RPAREN] = ACTIONS(726), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26088,57 +25285,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [139] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [131] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26150,9 +25347,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26193,57 +25390,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [140] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [132] = { + [sym_FnProto] = STATE(716), + [sym_AssignExpr] = STATE(2389), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(969), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26256,7 +25454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26267,7 +25465,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(746), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26298,57 +25495,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [141] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [133] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1488), + [sym_BinaryExpr] = STATE(1488), + [sym_UnaryExpr] = STATE(1488), + [sym__PrimaryExpr] = STATE(1488), + [sym_IfExpr] = STATE(1488), + [sym_Block] = STATE(1488), + [sym_LoopExpr] = STATE(1488), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1488), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1488), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26360,9 +25557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26373,6 +25569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(730), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26403,58 +25600,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [142] = { - [sym_FnProto] = STATE(719), - [sym_AssignExpr] = STATE(2392), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(981), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [134] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26466,8 +25662,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26508,57 +25705,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [143] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1521), - [sym_BinaryExpr] = STATE(1521), - [sym_UnaryExpr] = STATE(1521), - [sym__PrimaryExpr] = STATE(1521), - [sym_IfExpr] = STATE(1521), - [sym_Block] = STATE(1521), - [sym_LoopExpr] = STATE(1521), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1521), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [135] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1519), + [sym_BinaryExpr] = STATE(1519), + [sym_UnaryExpr] = STATE(1519), + [sym__PrimaryExpr] = STATE(1519), + [sym_IfExpr] = STATE(1519), + [sym_Block] = STATE(1519), + [sym_LoopExpr] = STATE(1519), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1519), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1521), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1519), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26571,7 +25768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26582,7 +25779,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(750), + [anon_sym_RPAREN] = ACTIONS(734), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26613,58 +25810,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [144] = { - [sym_FnProto] = STATE(719), - [sym_AssignExpr] = STATE(2250), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(981), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [136] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1527), + [sym_BinaryExpr] = STATE(1527), + [sym_UnaryExpr] = STATE(1527), + [sym__PrimaryExpr] = STATE(1527), + [sym_IfExpr] = STATE(1527), + [sym_Block] = STATE(1527), + [sym_LoopExpr] = STATE(1527), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1527), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1527), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26677,7 +25873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26688,6 +25884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26718,57 +25915,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [145] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [137] = { + [sym_FnProto] = STATE(716), + [sym_AssignExpr] = STATE(2278), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(969), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26780,9 +25978,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26823,57 +26020,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [146] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [138] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26885,8 +26082,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -26897,7 +26095,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(754), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -26928,57 +26125,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [147] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [139] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -26990,9 +26187,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27003,6 +26199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(740), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27033,163 +26230,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [148] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1522), - [sym_BinaryExpr] = STATE(1522), - [sym_UnaryExpr] = STATE(1522), - [sym__PrimaryExpr] = STATE(1522), - [sym_IfExpr] = STATE(1522), - [sym_Block] = STATE(1522), - [sym_LoopExpr] = STATE(1522), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1522), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1522), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_SwitchItem] = STATE(2224), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [149] = { - [sym_FnProto] = STATE(719), - [sym_AssignExpr] = STATE(2331), - [sym__Expr] = STATE(981), - [sym_BinaryExpr] = STATE(981), - [sym_UnaryExpr] = STATE(981), - [sym__PrimaryExpr] = STATE(981), - [sym_IfExpr] = STATE(981), - [sym_Block] = STATE(981), - [sym_LoopExpr] = STATE(981), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(981), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [140] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(981), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27201,8 +26292,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27243,57 +26335,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [150] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [141] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27306,7 +26398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27317,7 +26409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(758), + [anon_sym_RPAREN] = ACTIONS(744), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27348,57 +26440,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [151] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [142] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27411,7 +26503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27422,7 +26514,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(746), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27453,57 +26545,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [152] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [143] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27515,9 +26607,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(762), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27558,57 +26650,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [153] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [144] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27621,7 +26713,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27632,7 +26724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(764), + [anon_sym_RPAREN] = ACTIONS(750), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27663,57 +26755,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [154] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1516), - [sym_BinaryExpr] = STATE(1516), - [sym_UnaryExpr] = STATE(1516), - [sym__PrimaryExpr] = STATE(1516), - [sym_IfExpr] = STATE(1516), - [sym_Block] = STATE(1516), - [sym_LoopExpr] = STATE(1516), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1516), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [145] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1518), + [sym_BinaryExpr] = STATE(1518), + [sym_UnaryExpr] = STATE(1518), + [sym__PrimaryExpr] = STATE(1518), + [sym_IfExpr] = STATE(1518), + [sym_Block] = STATE(1518), + [sym_LoopExpr] = STATE(1518), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1518), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1518), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_SwitchItem] = STATE(2233), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [146] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1516), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27725,8 +26922,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27737,7 +26935,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27768,57 +26965,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [155] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [147] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -27830,9 +27027,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_RBRACE] = ACTIONS(768), + [anon_sym_RBRACE] = ACTIONS(754), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27873,70 +27070,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [156] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(884), - [sym_BinaryExpr] = STATE(884), - [sym_UnaryExpr] = STATE(884), - [sym__PrimaryExpr] = STATE(884), - [sym_IfExpr] = STATE(884), - [sym_Block] = STATE(884), - [sym_LoopExpr] = STATE(884), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(884), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [148] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(884), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -27947,6 +27144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(756), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -27977,174 +27175,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [157] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1236), - [sym_BinaryExpr] = STATE(1236), - [sym_UnaryExpr] = STATE(1236), - [sym__PrimaryExpr] = STATE(1236), - [sym_IfExpr] = STATE(1236), - [sym_Block] = STATE(1236), - [sym_LoopExpr] = STATE(1236), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1236), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1236), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [158] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1492), - [sym_BinaryExpr] = STATE(1492), - [sym_UnaryExpr] = STATE(1492), - [sym__PrimaryExpr] = STATE(1492), - [sym_IfExpr] = STATE(1492), - [sym_Block] = STATE(1492), - [sym_LoopExpr] = STATE(1492), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1492), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [149] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1487), + [sym_BinaryExpr] = STATE(1487), + [sym_UnaryExpr] = STATE(1487), + [sym__PrimaryExpr] = STATE(1487), + [sym_IfExpr] = STATE(1487), + [sym_Block] = STATE(1487), + [sym_LoopExpr] = STATE(1487), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1487), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1492), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1487), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28155,6 +27249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(758), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -28185,57 +27280,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [159] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1591), - [sym_BinaryExpr] = STATE(1591), - [sym_UnaryExpr] = STATE(1591), - [sym__PrimaryExpr] = STATE(1591), - [sym_IfExpr] = STATE(1591), - [sym_Block] = STATE(1591), - [sym_LoopExpr] = STATE(1591), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1591), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [150] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1591), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28248,7 +27343,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28259,6 +27354,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(760), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -28289,70 +27385,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [160] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1495), - [sym_BinaryExpr] = STATE(1495), - [sym_UnaryExpr] = STATE(1495), - [sym__PrimaryExpr] = STATE(1495), - [sym_IfExpr] = STATE(1495), - [sym_Block] = STATE(1495), - [sym_LoopExpr] = STATE(1495), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1495), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [151] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1495), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(772), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28363,6 +27459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(762), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -28393,57 +27490,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [161] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1586), - [sym_BinaryExpr] = STATE(1586), - [sym_UnaryExpr] = STATE(1586), - [sym__PrimaryExpr] = STATE(1586), - [sym_IfExpr] = STATE(1586), - [sym_Block] = STATE(1586), - [sym_LoopExpr] = STATE(1586), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1586), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [152] = { + [sym_FnProto] = STATE(716), + [sym_AssignExpr] = STATE(2358), + [sym__Expr] = STATE(969), + [sym_BinaryExpr] = STATE(969), + [sym_UnaryExpr] = STATE(969), + [sym__PrimaryExpr] = STATE(969), + [sym_IfExpr] = STATE(969), + [sym_Block] = STATE(969), + [sym_LoopExpr] = STATE(969), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(969), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1586), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(969), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28456,7 +27554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28497,57 +27595,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [162] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1587), - [sym_BinaryExpr] = STATE(1587), - [sym_UnaryExpr] = STATE(1587), - [sym__PrimaryExpr] = STATE(1587), - [sym_IfExpr] = STATE(1587), - [sym_Block] = STATE(1587), - [sym_LoopExpr] = STATE(1587), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1587), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [153] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1509), + [sym_BinaryExpr] = STATE(1509), + [sym_UnaryExpr] = STATE(1509), + [sym__PrimaryExpr] = STATE(1509), + [sym_IfExpr] = STATE(1509), + [sym_Block] = STATE(1509), + [sym_LoopExpr] = STATE(1509), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1509), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1587), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1509), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28560,7 +27658,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28571,6 +27669,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(764), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -28601,57 +27700,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [163] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1588), - [sym_BinaryExpr] = STATE(1588), - [sym_UnaryExpr] = STATE(1588), - [sym__PrimaryExpr] = STATE(1588), - [sym_IfExpr] = STATE(1588), - [sym_Block] = STATE(1588), - [sym_LoopExpr] = STATE(1588), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1588), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [154] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1588), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28664,7 +27763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28675,6 +27774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(766), [anon_sym_switch] = ACTIONS(73), [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), @@ -28705,57 +27805,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [164] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1589), - [sym_BinaryExpr] = STATE(1589), - [sym_UnaryExpr] = STATE(1589), - [sym__PrimaryExpr] = STATE(1589), - [sym_IfExpr] = STATE(1589), - [sym_Block] = STATE(1589), - [sym_LoopExpr] = STATE(1589), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1589), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [155] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1589), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28767,8 +27867,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(121), [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_RBRACE] = ACTIONS(768), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28809,57 +27910,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [165] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1589), - [sym_BinaryExpr] = STATE(1589), - [sym_UnaryExpr] = STATE(1589), - [sym__PrimaryExpr] = STATE(1589), - [sym_IfExpr] = STATE(1589), - [sym_Block] = STATE(1589), - [sym_LoopExpr] = STATE(1589), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1589), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [156] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(917), + [sym_BinaryExpr] = STATE(917), + [sym_UnaryExpr] = STATE(917), + [sym__PrimaryExpr] = STATE(917), + [sym_IfExpr] = STATE(917), + [sym_Block] = STATE(917), + [sym_LoopExpr] = STATE(917), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(917), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1589), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(917), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -28872,7 +27973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -28900,7 +28001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(87), [anon_sym_struct] = ACTIONS(89), [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(774), + [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), [anon_sym_SQUOTE] = ACTIONS(97), @@ -28913,186 +28014,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [166] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1480), - [sym_BinaryExpr] = STATE(1480), - [sym_UnaryExpr] = STATE(1480), - [sym__PrimaryExpr] = STATE(1480), - [sym_IfExpr] = STATE(1480), - [sym_Block] = STATE(1480), - [sym_LoopExpr] = STATE(1480), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1480), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1480), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [157] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1231), + [sym_BinaryExpr] = STATE(1231), + [sym_UnaryExpr] = STATE(1231), + [sym__PrimaryExpr] = STATE(1231), + [sym_IfExpr] = STATE(1231), + [sym_Block] = STATE(1231), + [sym_LoopExpr] = STATE(1231), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1231), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1231), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [167] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1480), - [sym_BinaryExpr] = STATE(1480), - [sym_UnaryExpr] = STATE(1480), - [sym__PrimaryExpr] = STATE(1480), - [sym_IfExpr] = STATE(1480), - [sym_Block] = STATE(1480), - [sym_LoopExpr] = STATE(1480), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1480), - [sym__TypeExpr] = STATE(1357), - [sym_ErrorUnionExpr] = STATE(1357), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1480), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -29111,80 +28108,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [168] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(924), - [sym_BinaryExpr] = STATE(924), - [sym_UnaryExpr] = STATE(924), - [sym__PrimaryExpr] = STATE(924), - [sym_IfExpr] = STATE(924), - [sym_Block] = STATE(924), - [sym_LoopExpr] = STATE(924), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(924), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [158] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1522), + [sym_BinaryExpr] = STATE(1522), + [sym_UnaryExpr] = STATE(1522), + [sym__PrimaryExpr] = STATE(1522), + [sym_IfExpr] = STATE(1522), + [sym_Block] = STATE(1522), + [sym_LoopExpr] = STATE(1522), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1522), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(924), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1522), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(770), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29225,70 +28222,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [169] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(923), - [sym_BinaryExpr] = STATE(923), - [sym_UnaryExpr] = STATE(923), - [sym__PrimaryExpr] = STATE(923), - [sym_IfExpr] = STATE(923), - [sym_Block] = STATE(923), - [sym_LoopExpr] = STATE(923), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(923), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [159] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1496), + [sym_BinaryExpr] = STATE(1496), + [sym_UnaryExpr] = STATE(1496), + [sym__PrimaryExpr] = STATE(1496), + [sym_IfExpr] = STATE(1496), + [sym_Block] = STATE(1496), + [sym_LoopExpr] = STATE(1496), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1496), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(923), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1496), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29329,57 +28326,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [170] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1542), - [sym_BinaryExpr] = STATE(1542), - [sym_UnaryExpr] = STATE(1542), - [sym__PrimaryExpr] = STATE(1542), - [sym_IfExpr] = STATE(1542), - [sym_Block] = STATE(1542), - [sym_LoopExpr] = STATE(1542), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1542), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [160] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1588), + [sym_BinaryExpr] = STATE(1588), + [sym_UnaryExpr] = STATE(1588), + [sym__PrimaryExpr] = STATE(1588), + [sym_IfExpr] = STATE(1588), + [sym_Block] = STATE(1588), + [sym_LoopExpr] = STATE(1588), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1588), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1542), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1588), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -29392,7 +28389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29433,174 +28430,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [171] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1481), - [sym_BinaryExpr] = STATE(1481), - [sym_UnaryExpr] = STATE(1481), - [sym__PrimaryExpr] = STATE(1481), - [sym_IfExpr] = STATE(1481), - [sym_Block] = STATE(1481), - [sym_LoopExpr] = STATE(1481), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1481), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [161] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1461), + [sym_BinaryExpr] = STATE(1461), + [sym_UnaryExpr] = STATE(1461), + [sym__PrimaryExpr] = STATE(1461), + [sym_IfExpr] = STATE(1461), + [sym_Block] = STATE(1461), + [sym_LoopExpr] = STATE(1461), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1461), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1481), - [sym_BlockLabel] = STATE(1910), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1461), + [sym_BlockLabel] = STATE(1916), [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), + [sym_WhilePrefix] = STATE(314), [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(780), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [172] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1581), - [sym_BinaryExpr] = STATE(1581), - [sym_UnaryExpr] = STATE(1581), - [sym__PrimaryExpr] = STATE(1581), - [sym_IfExpr] = STATE(1581), - [sym_Block] = STATE(1581), - [sym_LoopExpr] = STATE(1581), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1581), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1581), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(774), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29641,70 +28534,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [173] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1509), - [sym_BinaryExpr] = STATE(1509), - [sym_UnaryExpr] = STATE(1509), - [sym__PrimaryExpr] = STATE(1509), - [sym_IfExpr] = STATE(1509), - [sym_Block] = STATE(1509), - [sym_LoopExpr] = STATE(1509), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1509), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [162] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1531), + [sym_BinaryExpr] = STATE(1531), + [sym_UnaryExpr] = STATE(1531), + [sym__PrimaryExpr] = STATE(1531), + [sym_IfExpr] = STATE(1531), + [sym_Block] = STATE(1531), + [sym_LoopExpr] = STATE(1531), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1531), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1509), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1531), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(782), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(776), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29745,82 +28638,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [174] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1518), - [sym_BinaryExpr] = STATE(1518), - [sym_UnaryExpr] = STATE(1518), - [sym__PrimaryExpr] = STATE(1518), - [sym_IfExpr] = STATE(1518), - [sym_Block] = STATE(1518), - [sym_LoopExpr] = STATE(1518), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1518), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1518), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [163] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1469), + [sym_BinaryExpr] = STATE(1469), + [sym_UnaryExpr] = STATE(1469), + [sym__PrimaryExpr] = STATE(1469), + [sym_IfExpr] = STATE(1469), + [sym_Block] = STATE(1469), + [sym_LoopExpr] = STATE(1469), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1469), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1469), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(784), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -29839,67 +28732,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [175] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1573), - [sym_BinaryExpr] = STATE(1573), - [sym_UnaryExpr] = STATE(1573), - [sym__PrimaryExpr] = STATE(1573), - [sym_IfExpr] = STATE(1573), - [sym_Block] = STATE(1573), - [sym_LoopExpr] = STATE(1573), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1573), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [164] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1591), + [sym_BinaryExpr] = STATE(1591), + [sym_UnaryExpr] = STATE(1591), + [sym__PrimaryExpr] = STATE(1591), + [sym_IfExpr] = STATE(1591), + [sym_Block] = STATE(1591), + [sym_LoopExpr] = STATE(1591), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1591), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1573), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1591), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -29912,7 +28805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -29953,57 +28846,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [176] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(915), - [sym_BinaryExpr] = STATE(915), - [sym_UnaryExpr] = STATE(915), - [sym__PrimaryExpr] = STATE(915), - [sym_IfExpr] = STATE(915), - [sym_Block] = STATE(915), - [sym_LoopExpr] = STATE(915), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(915), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [165] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1592), + [sym_BinaryExpr] = STATE(1592), + [sym_UnaryExpr] = STATE(1592), + [sym__PrimaryExpr] = STATE(1592), + [sym_IfExpr] = STATE(1592), + [sym_Block] = STATE(1592), + [sym_LoopExpr] = STATE(1592), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1592), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(915), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1592), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30016,7 +28909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30057,57 +28950,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [177] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(914), - [sym_BinaryExpr] = STATE(914), - [sym_UnaryExpr] = STATE(914), - [sym__PrimaryExpr] = STATE(914), - [sym_IfExpr] = STATE(914), - [sym_Block] = STATE(914), - [sym_LoopExpr] = STATE(914), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(914), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [166] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1593), + [sym_BinaryExpr] = STATE(1593), + [sym_UnaryExpr] = STATE(1593), + [sym__PrimaryExpr] = STATE(1593), + [sym_IfExpr] = STATE(1593), + [sym_Block] = STATE(1593), + [sym_LoopExpr] = STATE(1593), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1593), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(914), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1593), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30120,7 +29013,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30161,57 +29054,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [178] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(913), - [sym_BinaryExpr] = STATE(913), - [sym_UnaryExpr] = STATE(913), - [sym__PrimaryExpr] = STATE(913), - [sym_IfExpr] = STATE(913), - [sym_Block] = STATE(913), - [sym_LoopExpr] = STATE(913), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(913), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [167] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1594), + [sym_BinaryExpr] = STATE(1594), + [sym_UnaryExpr] = STATE(1594), + [sym__PrimaryExpr] = STATE(1594), + [sym_IfExpr] = STATE(1594), + [sym_Block] = STATE(1594), + [sym_LoopExpr] = STATE(1594), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1594), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(913), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1594), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30224,7 +29117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30265,57 +29158,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [179] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(910), - [sym_BinaryExpr] = STATE(910), - [sym_UnaryExpr] = STATE(910), - [sym__PrimaryExpr] = STATE(910), - [sym_IfExpr] = STATE(910), - [sym_Block] = STATE(910), - [sym_LoopExpr] = STATE(910), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(910), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [168] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1594), + [sym_BinaryExpr] = STATE(1594), + [sym_UnaryExpr] = STATE(1594), + [sym__PrimaryExpr] = STATE(1594), + [sym_IfExpr] = STATE(1594), + [sym_Block] = STATE(1594), + [sym_LoopExpr] = STATE(1594), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1594), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(910), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1594), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30328,7 +29221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30356,7 +29249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(87), [anon_sym_struct] = ACTIONS(89), [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), + [anon_sym_enum] = ACTIONS(778), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), [anon_sym_SQUOTE] = ACTIONS(97), @@ -30369,57 +29262,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [180] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(908), - [sym_BinaryExpr] = STATE(908), - [sym_UnaryExpr] = STATE(908), - [sym__PrimaryExpr] = STATE(908), - [sym_IfExpr] = STATE(908), - [sym_Block] = STATE(908), - [sym_LoopExpr] = STATE(908), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(908), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), + [169] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1469), + [sym_BinaryExpr] = STATE(1469), + [sym_UnaryExpr] = STATE(1469), + [sym__PrimaryExpr] = STATE(1469), + [sym_IfExpr] = STATE(1469), + [sym_Block] = STATE(1469), + [sym_LoopExpr] = STATE(1469), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1469), + [sym__TypeExpr] = STATE(1349), + [sym_ErrorUnionExpr] = STATE(1349), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1469), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [170] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1552), + [sym_BinaryExpr] = STATE(1552), + [sym_UnaryExpr] = STATE(1552), + [sym__PrimaryExpr] = STATE(1552), + [sym_IfExpr] = STATE(1552), + [sym_Block] = STATE(1552), + [sym_LoopExpr] = STATE(1552), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1552), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(908), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1552), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30432,7 +29429,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30473,70 +29470,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [181] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1568), - [sym_BinaryExpr] = STATE(1568), - [sym_UnaryExpr] = STATE(1568), - [sym__PrimaryExpr] = STATE(1568), - [sym_IfExpr] = STATE(1568), - [sym_Block] = STATE(1568), - [sym_LoopExpr] = STATE(1568), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1568), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [171] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1474), + [sym_BinaryExpr] = STATE(1474), + [sym_UnaryExpr] = STATE(1474), + [sym__PrimaryExpr] = STATE(1474), + [sym_IfExpr] = STATE(1474), + [sym_Block] = STATE(1474), + [sym_LoopExpr] = STATE(1474), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1474), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1568), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1474), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(784), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30577,186 +29574,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [182] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1212), - [sym_BinaryExpr] = STATE(1212), - [sym_UnaryExpr] = STATE(1212), - [sym__PrimaryExpr] = STATE(1212), - [sym_IfExpr] = STATE(1212), - [sym_Block] = STATE(1212), - [sym_LoopExpr] = STATE(1212), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1212), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1212), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [183] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1520), - [sym_BinaryExpr] = STATE(1520), - [sym_UnaryExpr] = STATE(1520), - [sym__PrimaryExpr] = STATE(1520), - [sym_IfExpr] = STATE(1520), - [sym_Block] = STATE(1520), - [sym_LoopExpr] = STATE(1520), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1520), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1520), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [172] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(920), + [sym_BinaryExpr] = STATE(920), + [sym_UnaryExpr] = STATE(920), + [sym__PrimaryExpr] = STATE(920), + [sym_IfExpr] = STATE(920), + [sym_Block] = STATE(920), + [sym_LoopExpr] = STATE(920), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(920), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(920), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -30775,67 +29668,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [184] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1540), - [sym_BinaryExpr] = STATE(1540), - [sym_UnaryExpr] = STATE(1540), - [sym__PrimaryExpr] = STATE(1540), - [sym_IfExpr] = STATE(1540), - [sym_Block] = STATE(1540), - [sym_LoopExpr] = STATE(1540), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1540), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [173] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(918), + [sym_BinaryExpr] = STATE(918), + [sym_UnaryExpr] = STATE(918), + [sym__PrimaryExpr] = STATE(918), + [sym_IfExpr] = STATE(918), + [sym_Block] = STATE(918), + [sym_LoopExpr] = STATE(918), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(918), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1540), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(918), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -30848,7 +29741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30889,12 +29782,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [185] = { - [sym_FnProto] = STATE(719), + [174] = { + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(1515), [sym_BinaryExpr] = STATE(1515), [sym_UnaryExpr] = STATE(1515), @@ -30902,57 +29795,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1515), [sym_Block] = STATE(1515), [sym_LoopExpr] = STATE(1515), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(1515), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(1515), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(786), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -30993,82 +29886,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [186] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1450), - [sym_BinaryExpr] = STATE(1450), - [sym_UnaryExpr] = STATE(1450), - [sym__PrimaryExpr] = STATE(1450), - [sym_IfExpr] = STATE(1450), - [sym_Block] = STATE(1450), - [sym_LoopExpr] = STATE(1450), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1450), - [sym__TypeExpr] = STATE(785), - [sym_ErrorUnionExpr] = STATE(785), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1450), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [175] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1237), + [sym_BinaryExpr] = STATE(1237), + [sym_UnaryExpr] = STATE(1237), + [sym__PrimaryExpr] = STATE(1237), + [sym_IfExpr] = STATE(1237), + [sym_Block] = STATE(1237), + [sym_LoopExpr] = STATE(1237), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1237), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1237), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -31087,88 +29980,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [187] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1451), - [sym_BinaryExpr] = STATE(1451), - [sym_UnaryExpr] = STATE(1451), - [sym__PrimaryExpr] = STATE(1451), - [sym_IfExpr] = STATE(1451), - [sym_Block] = STATE(1451), - [sym_LoopExpr] = STATE(1451), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1451), - [sym__TypeExpr] = STATE(783), - [sym_ErrorUnionExpr] = STATE(783), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [176] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(923), + [sym_BinaryExpr] = STATE(923), + [sym_UnaryExpr] = STATE(923), + [sym__PrimaryExpr] = STATE(923), + [sym_IfExpr] = STATE(923), + [sym_Block] = STATE(923), + [sym_LoopExpr] = STATE(923), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(923), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1451), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(923), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(802), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -31201,78 +30094,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [188] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1452), - [sym_BinaryExpr] = STATE(1452), - [sym_UnaryExpr] = STATE(1452), - [sym__PrimaryExpr] = STATE(1452), - [sym_IfExpr] = STATE(1452), - [sym_Block] = STATE(1452), - [sym_LoopExpr] = STATE(1452), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1452), - [sym__TypeExpr] = STATE(781), - [sym_ErrorUnionExpr] = STATE(781), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [177] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(857), + [sym_BinaryExpr] = STATE(857), + [sym_UnaryExpr] = STATE(857), + [sym__PrimaryExpr] = STATE(857), + [sym_IfExpr] = STATE(857), + [sym_Block] = STATE(857), + [sym_LoopExpr] = STATE(857), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(857), + [sym__TypeExpr] = STATE(830), + [sym_ErrorUnionExpr] = STATE(830), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1452), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(857), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(804), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -31305,82 +30198,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [189] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1563), - [sym_BinaryExpr] = STATE(1563), - [sym_UnaryExpr] = STATE(1563), - [sym__PrimaryExpr] = STATE(1563), - [sym_IfExpr] = STATE(1563), - [sym_Block] = STATE(1563), - [sym_LoopExpr] = STATE(1563), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1563), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1563), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [178] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1218), + [sym_BinaryExpr] = STATE(1218), + [sym_UnaryExpr] = STATE(1218), + [sym__PrimaryExpr] = STATE(1218), + [sym_IfExpr] = STATE(1218), + [sym_Block] = STATE(1218), + [sym_LoopExpr] = STATE(1218), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1218), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1218), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -31399,196 +30292,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [190] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1239), - [sym_BinaryExpr] = STATE(1239), - [sym_UnaryExpr] = STATE(1239), - [sym__PrimaryExpr] = STATE(1239), - [sym_IfExpr] = STATE(1239), - [sym_Block] = STATE(1239), - [sym_LoopExpr] = STATE(1239), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1239), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1239), + [179] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1470), + [sym_BinaryExpr] = STATE(1470), + [sym_UnaryExpr] = STATE(1470), + [sym__PrimaryExpr] = STATE(1470), + [sym_IfExpr] = STATE(1470), + [sym_Block] = STATE(1470), + [sym_LoopExpr] = STATE(1470), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1470), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1470), [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [191] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1494), - [sym_BinaryExpr] = STATE(1494), - [sym_UnaryExpr] = STATE(1494), - [sym__PrimaryExpr] = STATE(1494), - [sym_IfExpr] = STATE(1494), - [sym_Block] = STATE(1494), - [sym_LoopExpr] = STATE(1494), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1494), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1494), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(271), [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_resume] = ACTIONS(275), [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -31607,67 +30396,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [192] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1550), - [sym_BinaryExpr] = STATE(1550), - [sym_UnaryExpr] = STATE(1550), - [sym__PrimaryExpr] = STATE(1550), - [sym_IfExpr] = STATE(1550), - [sym_Block] = STATE(1550), - [sym_LoopExpr] = STATE(1550), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1550), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [180] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(916), + [sym_BinaryExpr] = STATE(916), + [sym_UnaryExpr] = STATE(916), + [sym__PrimaryExpr] = STATE(916), + [sym_IfExpr] = STATE(916), + [sym_Block] = STATE(916), + [sym_LoopExpr] = STATE(916), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(916), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1550), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(916), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -31680,7 +30469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -31721,70 +30510,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [193] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1478), - [sym_BinaryExpr] = STATE(1478), - [sym_UnaryExpr] = STATE(1478), - [sym__PrimaryExpr] = STATE(1478), - [sym_IfExpr] = STATE(1478), - [sym_Block] = STATE(1478), - [sym_LoopExpr] = STATE(1478), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1478), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [181] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(914), + [sym_BinaryExpr] = STATE(914), + [sym_UnaryExpr] = STATE(914), + [sym__PrimaryExpr] = STATE(914), + [sym_IfExpr] = STATE(914), + [sym_Block] = STATE(914), + [sym_LoopExpr] = STATE(914), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(914), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1478), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(914), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(806), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -31825,57 +30614,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [194] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1560), - [sym_BinaryExpr] = STATE(1560), - [sym_UnaryExpr] = STATE(1560), - [sym__PrimaryExpr] = STATE(1560), - [sym_IfExpr] = STATE(1560), - [sym_Block] = STATE(1560), - [sym_LoopExpr] = STATE(1560), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1560), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [182] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(913), + [sym_BinaryExpr] = STATE(913), + [sym_UnaryExpr] = STATE(913), + [sym__PrimaryExpr] = STATE(913), + [sym_IfExpr] = STATE(913), + [sym_Block] = STATE(913), + [sym_LoopExpr] = STATE(913), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(913), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1560), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(913), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -31888,7 +30677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -31929,57 +30718,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [195] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1556), - [sym_BinaryExpr] = STATE(1556), - [sym_UnaryExpr] = STATE(1556), - [sym__PrimaryExpr] = STATE(1556), - [sym_IfExpr] = STATE(1556), - [sym_Block] = STATE(1556), - [sym_LoopExpr] = STATE(1556), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1556), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [183] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(911), + [sym_BinaryExpr] = STATE(911), + [sym_UnaryExpr] = STATE(911), + [sym__PrimaryExpr] = STATE(911), + [sym_IfExpr] = STATE(911), + [sym_Block] = STATE(911), + [sym_LoopExpr] = STATE(911), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(911), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1556), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(911), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -31992,7 +30781,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -32033,78 +30822,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [196] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1520), - [sym_BinaryExpr] = STATE(1520), - [sym_UnaryExpr] = STATE(1520), - [sym__PrimaryExpr] = STATE(1520), - [sym_IfExpr] = STATE(1520), - [sym_Block] = STATE(1520), - [sym_LoopExpr] = STATE(1520), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1520), - [sym__TypeExpr] = STATE(1357), - [sym_ErrorUnionExpr] = STATE(1357), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [184] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1516), + [sym_BinaryExpr] = STATE(1516), + [sym_UnaryExpr] = STATE(1516), + [sym__PrimaryExpr] = STATE(1516), + [sym_IfExpr] = STATE(1516), + [sym_Block] = STATE(1516), + [sym_LoopExpr] = STATE(1516), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1516), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1520), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1516), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(808), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -32137,82 +30926,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [197] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1501), - [sym_BinaryExpr] = STATE(1501), - [sym_UnaryExpr] = STATE(1501), - [sym__PrimaryExpr] = STATE(1501), - [sym_IfExpr] = STATE(1501), - [sym_Block] = STATE(1501), - [sym_LoopExpr] = STATE(1501), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1501), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1501), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), + [185] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1511), + [sym_BinaryExpr] = STATE(1511), + [sym_UnaryExpr] = STATE(1511), + [sym__PrimaryExpr] = STATE(1511), + [sym_IfExpr] = STATE(1511), + [sym_Block] = STATE(1511), + [sym_LoopExpr] = STATE(1511), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1511), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1511), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(800), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -32231,88 +31020,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [198] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1507), - [sym_BinaryExpr] = STATE(1507), - [sym_UnaryExpr] = STATE(1507), - [sym__PrimaryExpr] = STATE(1507), - [sym_IfExpr] = STATE(1507), - [sym_Block] = STATE(1507), - [sym_LoopExpr] = STATE(1507), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1507), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [186] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1516), + [sym_BinaryExpr] = STATE(1516), + [sym_UnaryExpr] = STATE(1516), + [sym__PrimaryExpr] = STATE(1516), + [sym_IfExpr] = STATE(1516), + [sym_Block] = STATE(1516), + [sym_LoopExpr] = STATE(1516), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1516), + [sym__TypeExpr] = STATE(1349), + [sym_ErrorUnionExpr] = STATE(1349), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1507), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1516), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -32345,165 +31134,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [199] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1513), - [sym_BinaryExpr] = STATE(1513), - [sym_UnaryExpr] = STATE(1513), - [sym__PrimaryExpr] = STATE(1513), - [sym_IfExpr] = STATE(1513), - [sym_Block] = STATE(1513), - [sym_LoopExpr] = STATE(1513), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1513), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1513), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [200] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1582), - [sym_BinaryExpr] = STATE(1582), - [sym_UnaryExpr] = STATE(1582), - [sym__PrimaryExpr] = STATE(1582), - [sym_IfExpr] = STATE(1582), - [sym_Block] = STATE(1582), - [sym_LoopExpr] = STATE(1582), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1582), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1582), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [187] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1540), + [sym_BinaryExpr] = STATE(1540), + [sym_UnaryExpr] = STATE(1540), + [sym__PrimaryExpr] = STATE(1540), + [sym_IfExpr] = STATE(1540), + [sym_Block] = STATE(1540), + [sym_LoopExpr] = STATE(1540), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1540), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1540), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(121), [anon_sym_break] = ACTIONS(123), @@ -32512,7 +31197,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -32553,78 +31238,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [201] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1579), - [sym_BinaryExpr] = STATE(1579), - [sym_UnaryExpr] = STATE(1579), - [sym__PrimaryExpr] = STATE(1579), - [sym_IfExpr] = STATE(1579), - [sym_Block] = STATE(1579), - [sym_LoopExpr] = STATE(1579), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1579), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [188] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1455), + [sym_BinaryExpr] = STATE(1455), + [sym_UnaryExpr] = STATE(1455), + [sym__PrimaryExpr] = STATE(1455), + [sym_IfExpr] = STATE(1455), + [sym_Block] = STATE(1455), + [sym_LoopExpr] = STATE(1455), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1455), + [sym__TypeExpr] = STATE(830), + [sym_ErrorUnionExpr] = STATE(830), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1579), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1455), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -32657,82 +31342,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [202] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1482), - [sym_BinaryExpr] = STATE(1482), - [sym_UnaryExpr] = STATE(1482), - [sym__PrimaryExpr] = STATE(1482), - [sym_IfExpr] = STATE(1482), - [sym_Block] = STATE(1482), - [sym_LoopExpr] = STATE(1482), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1482), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1482), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [189] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1456), + [sym_BinaryExpr] = STATE(1456), + [sym_UnaryExpr] = STATE(1456), + [sym__PrimaryExpr] = STATE(1456), + [sym_IfExpr] = STATE(1456), + [sym_Block] = STATE(1456), + [sym_LoopExpr] = STATE(1456), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1456), + [sym__TypeExpr] = STATE(827), + [sym_ErrorUnionExpr] = STATE(827), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1456), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(271), [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(808), + [anon_sym_resume] = ACTIONS(275), [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -32751,92 +31436,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [203] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1496), - [sym_BinaryExpr] = STATE(1496), - [sym_UnaryExpr] = STATE(1496), - [sym__PrimaryExpr] = STATE(1496), - [sym_IfExpr] = STATE(1496), - [sym_Block] = STATE(1496), - [sym_LoopExpr] = STATE(1496), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1496), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1496), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [190] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1458), + [sym_BinaryExpr] = STATE(1458), + [sym_UnaryExpr] = STATE(1458), + [sym__PrimaryExpr] = STATE(1458), + [sym_IfExpr] = STATE(1458), + [sym_Block] = STATE(1458), + [sym_LoopExpr] = STATE(1458), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1458), + [sym__TypeExpr] = STATE(824), + [sym_ErrorUnionExpr] = STATE(824), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1458), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), + [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(271), [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(810), + [anon_sym_resume] = ACTIONS(275), [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -32855,92 +31540,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [204] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1498), - [sym_BinaryExpr] = STATE(1498), - [sym_UnaryExpr] = STATE(1498), - [sym__PrimaryExpr] = STATE(1498), - [sym_IfExpr] = STATE(1498), - [sym_Block] = STATE(1498), - [sym_LoopExpr] = STATE(1498), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1498), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1498), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [191] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(846), + [sym_BinaryExpr] = STATE(846), + [sym_UnaryExpr] = STATE(846), + [sym__PrimaryExpr] = STATE(846), + [sym_IfExpr] = STATE(846), + [sym_Block] = STATE(846), + [sym_LoopExpr] = STATE(846), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(846), + [sym__TypeExpr] = STATE(827), + [sym_ErrorUnionExpr] = STATE(827), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(846), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -32959,88 +31644,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [205] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1590), - [sym_BinaryExpr] = STATE(1590), - [sym_UnaryExpr] = STATE(1590), - [sym__PrimaryExpr] = STATE(1590), - [sym_IfExpr] = STATE(1590), - [sym_Block] = STATE(1590), - [sym_LoopExpr] = STATE(1590), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1590), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [192] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(847), + [sym_BinaryExpr] = STATE(847), + [sym_UnaryExpr] = STATE(847), + [sym__PrimaryExpr] = STATE(847), + [sym_IfExpr] = STATE(847), + [sym_Block] = STATE(847), + [sym_LoopExpr] = STATE(847), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(847), + [sym__TypeExpr] = STATE(824), + [sym_ErrorUnionExpr] = STATE(824), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1590), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(847), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -33073,69 +31758,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [206] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1499), - [sym_BinaryExpr] = STATE(1499), - [sym_UnaryExpr] = STATE(1499), - [sym__PrimaryExpr] = STATE(1499), - [sym_IfExpr] = STATE(1499), - [sym_Block] = STATE(1499), - [sym_LoopExpr] = STATE(1499), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1499), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [193] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1520), + [sym_BinaryExpr] = STATE(1520), + [sym_UnaryExpr] = STATE(1520), + [sym__PrimaryExpr] = STATE(1520), + [sym_IfExpr] = STATE(1520), + [sym_Block] = STATE(1520), + [sym_LoopExpr] = STATE(1520), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1520), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1499), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1520), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -33177,70 +31862,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [207] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1477), - [sym_BinaryExpr] = STATE(1477), - [sym_UnaryExpr] = STATE(1477), - [sym__PrimaryExpr] = STATE(1477), - [sym_IfExpr] = STATE(1477), - [sym_Block] = STATE(1477), - [sym_LoopExpr] = STATE(1477), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1477), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [194] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1560), + [sym_BinaryExpr] = STATE(1560), + [sym_UnaryExpr] = STATE(1560), + [sym__PrimaryExpr] = STATE(1560), + [sym_IfExpr] = STATE(1560), + [sym_Block] = STATE(1560), + [sym_LoopExpr] = STATE(1560), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1560), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1477), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1560), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(810), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -33281,61 +31966,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [208] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1238), - [sym_BinaryExpr] = STATE(1238), - [sym_UnaryExpr] = STATE(1238), - [sym__PrimaryExpr] = STATE(1238), - [sym_IfExpr] = STATE(1238), - [sym_Block] = STATE(1238), - [sym_LoopExpr] = STATE(1238), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1238), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1238), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [195] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1225), + [sym_BinaryExpr] = STATE(1225), + [sym_UnaryExpr] = STATE(1225), + [sym__PrimaryExpr] = STATE(1225), + [sym_IfExpr] = STATE(1225), + [sym_Block] = STATE(1225), + [sym_LoopExpr] = STATE(1225), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1225), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1225), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(177), [anon_sym_break] = ACTIONS(179), @@ -33385,70 +32070,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [209] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1475), - [sym_BinaryExpr] = STATE(1475), - [sym_UnaryExpr] = STATE(1475), - [sym__PrimaryExpr] = STATE(1475), - [sym_IfExpr] = STATE(1475), - [sym_Block] = STATE(1475), - [sym_LoopExpr] = STATE(1475), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1475), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [196] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(908), + [sym_BinaryExpr] = STATE(908), + [sym_UnaryExpr] = STATE(908), + [sym__PrimaryExpr] = STATE(908), + [sym_IfExpr] = STATE(908), + [sym_Block] = STATE(908), + [sym_LoopExpr] = STATE(908), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(908), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1475), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(908), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(812), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -33489,82 +32174,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [210] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1458), - [sym_BinaryExpr] = STATE(1458), - [sym_UnaryExpr] = STATE(1458), - [sym__PrimaryExpr] = STATE(1458), - [sym_IfExpr] = STATE(1458), - [sym_Block] = STATE(1458), - [sym_LoopExpr] = STATE(1458), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1458), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1458), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [197] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1236), + [sym_BinaryExpr] = STATE(1236), + [sym_UnaryExpr] = STATE(1236), + [sym__PrimaryExpr] = STATE(1236), + [sym_IfExpr] = STATE(1236), + [sym_Block] = STATE(1236), + [sym_LoopExpr] = STATE(1236), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1236), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1236), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(814), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -33583,79 +32268,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [211] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1505), - [sym_BinaryExpr] = STATE(1505), - [sym_UnaryExpr] = STATE(1505), - [sym__PrimaryExpr] = STATE(1505), - [sym_IfExpr] = STATE(1505), - [sym_Block] = STATE(1505), - [sym_LoopExpr] = STATE(1505), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1505), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [198] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1508), + [sym_BinaryExpr] = STATE(1508), + [sym_UnaryExpr] = STATE(1508), + [sym__PrimaryExpr] = STATE(1508), + [sym_IfExpr] = STATE(1508), + [sym_Block] = STATE(1508), + [sym_LoopExpr] = STATE(1508), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1508), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1505), - [sym_BlockLabel] = STATE(1915), - [sym_IfPrefix] = STATE(241), - [sym_WhilePrefix] = STATE(243), - [sym_ForPrefix] = STATE(255), - [sym_PrefixOp] = STATE(191), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(269), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1508), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(271), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(277), - [anon_sym_break] = ACTIONS(279), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(277), - [anon_sym_return] = ACTIONS(281), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(283), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -33697,269 +32382,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [212] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1461), - [sym_BinaryExpr] = STATE(1461), - [sym_UnaryExpr] = STATE(1461), - [sym__PrimaryExpr] = STATE(1461), - [sym_IfExpr] = STATE(1461), - [sym_Block] = STATE(1461), - [sym_LoopExpr] = STATE(1461), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1461), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1461), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(816), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [213] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1524), - [sym_BinaryExpr] = STATE(1524), - [sym_UnaryExpr] = STATE(1524), - [sym__PrimaryExpr] = STATE(1524), - [sym_IfExpr] = STATE(1524), - [sym_Block] = STATE(1524), - [sym_LoopExpr] = STATE(1524), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1524), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1524), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(818), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [214] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1234), - [sym_BinaryExpr] = STATE(1234), - [sym_UnaryExpr] = STATE(1234), - [sym__PrimaryExpr] = STATE(1234), - [sym_IfExpr] = STATE(1234), - [sym_Block] = STATE(1234), - [sym_LoopExpr] = STATE(1234), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1234), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1234), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), + [199] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1239), + [sym_BinaryExpr] = STATE(1239), + [sym_UnaryExpr] = STATE(1239), + [sym__PrimaryExpr] = STATE(1239), + [sym_IfExpr] = STATE(1239), + [sym_Block] = STATE(1239), + [sym_LoopExpr] = STATE(1239), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1239), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1239), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(177), [anon_sym_break] = ACTIONS(179), @@ -34009,82 +32486,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [215] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1595), - [sym_BinaryExpr] = STATE(1595), - [sym_UnaryExpr] = STATE(1595), - [sym__PrimaryExpr] = STATE(1595), - [sym_IfExpr] = STATE(1595), - [sym_Block] = STATE(1595), - [sym_LoopExpr] = STATE(1595), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1595), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1595), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [200] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1506), + [sym_BinaryExpr] = STATE(1506), + [sym_UnaryExpr] = STATE(1506), + [sym__PrimaryExpr] = STATE(1506), + [sym_IfExpr] = STATE(1506), + [sym_Block] = STATE(1506), + [sym_LoopExpr] = STATE(1506), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1506), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1506), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34103,79 +32580,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [216] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1462), - [sym_BinaryExpr] = STATE(1462), - [sym_UnaryExpr] = STATE(1462), - [sym__PrimaryExpr] = STATE(1462), - [sym_IfExpr] = STATE(1462), - [sym_Block] = STATE(1462), - [sym_LoopExpr] = STATE(1462), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1462), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [201] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1498), + [sym_BinaryExpr] = STATE(1498), + [sym_UnaryExpr] = STATE(1498), + [sym__PrimaryExpr] = STATE(1498), + [sym_IfExpr] = STATE(1498), + [sym_Block] = STATE(1498), + [sym_LoopExpr] = STATE(1498), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1498), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1462), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1498), [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -34217,82 +32694,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [217] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(920), - [sym_BinaryExpr] = STATE(920), - [sym_UnaryExpr] = STATE(920), - [sym__PrimaryExpr] = STATE(920), - [sym_IfExpr] = STATE(920), - [sym_Block] = STATE(920), - [sym_LoopExpr] = STATE(920), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(920), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(920), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [202] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1491), + [sym_BinaryExpr] = STATE(1491), + [sym_UnaryExpr] = STATE(1491), + [sym__PrimaryExpr] = STATE(1491), + [sym_IfExpr] = STATE(1491), + [sym_Block] = STATE(1491), + [sym_LoopExpr] = STATE(1491), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1491), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1491), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34311,92 +32788,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [218] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(844), - [sym_BinaryExpr] = STATE(844), - [sym_UnaryExpr] = STATE(844), - [sym__PrimaryExpr] = STATE(844), - [sym_IfExpr] = STATE(844), - [sym_Block] = STATE(844), - [sym_LoopExpr] = STATE(844), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(844), - [sym__TypeExpr] = STATE(785), - [sym_ErrorUnionExpr] = STATE(785), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(844), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [203] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1241), + [sym_BinaryExpr] = STATE(1241), + [sym_UnaryExpr] = STATE(1241), + [sym__PrimaryExpr] = STATE(1241), + [sym_IfExpr] = STATE(1241), + [sym_Block] = STATE(1241), + [sym_LoopExpr] = STATE(1241), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1241), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1241), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34415,92 +32892,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [219] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1479), - [sym_BinaryExpr] = STATE(1479), - [sym_UnaryExpr] = STATE(1479), - [sym__PrimaryExpr] = STATE(1479), - [sym_IfExpr] = STATE(1479), - [sym_Block] = STATE(1479), - [sym_LoopExpr] = STATE(1479), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1479), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1479), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [204] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1240), + [sym_BinaryExpr] = STATE(1240), + [sym_UnaryExpr] = STATE(1240), + [sym__PrimaryExpr] = STATE(1240), + [sym_IfExpr] = STATE(1240), + [sym_Block] = STATE(1240), + [sym_LoopExpr] = STATE(1240), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1240), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1240), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34519,67 +32996,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [220] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1601), - [sym_BinaryExpr] = STATE(1601), - [sym_UnaryExpr] = STATE(1601), - [sym__PrimaryExpr] = STATE(1601), - [sym_IfExpr] = STATE(1601), - [sym_Block] = STATE(1601), - [sym_LoopExpr] = STATE(1601), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1601), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [205] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1514), + [sym_BinaryExpr] = STATE(1514), + [sym_UnaryExpr] = STATE(1514), + [sym__PrimaryExpr] = STATE(1514), + [sym_IfExpr] = STATE(1514), + [sym_Block] = STATE(1514), + [sym_LoopExpr] = STATE(1514), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1514), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1514), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [206] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1589), + [sym_BinaryExpr] = STATE(1589), + [sym_UnaryExpr] = STATE(1589), + [sym__PrimaryExpr] = STATE(1589), + [sym_IfExpr] = STATE(1589), + [sym_Block] = STATE(1589), + [sym_LoopExpr] = STATE(1589), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1589), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1601), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1589), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -34592,7 +33173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -34633,82 +33214,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [221] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(857), - [sym_BinaryExpr] = STATE(857), - [sym_UnaryExpr] = STATE(857), - [sym__PrimaryExpr] = STATE(857), - [sym_IfExpr] = STATE(857), - [sym_Block] = STATE(857), - [sym_LoopExpr] = STATE(857), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(857), - [sym__TypeExpr] = STATE(783), - [sym_ErrorUnionExpr] = STATE(783), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(857), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [207] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1501), + [sym_BinaryExpr] = STATE(1501), + [sym_UnaryExpr] = STATE(1501), + [sym__PrimaryExpr] = STATE(1501), + [sym_IfExpr] = STATE(1501), + [sym_Block] = STATE(1501), + [sym_LoopExpr] = STATE(1501), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1501), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1501), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34727,92 +33308,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [222] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1218), - [sym_BinaryExpr] = STATE(1218), - [sym_UnaryExpr] = STATE(1218), - [sym__PrimaryExpr] = STATE(1218), - [sym_IfExpr] = STATE(1218), - [sym_Block] = STATE(1218), - [sym_LoopExpr] = STATE(1218), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1218), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1218), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), + [208] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1224), + [sym_BinaryExpr] = STATE(1224), + [sym_UnaryExpr] = STATE(1224), + [sym__PrimaryExpr] = STATE(1224), + [sym_IfExpr] = STATE(1224), + [sym_Block] = STATE(1224), + [sym_LoopExpr] = STATE(1224), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1224), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1224), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34831,92 +33412,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [223] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1218), - [sym_BinaryExpr] = STATE(1218), - [sym_UnaryExpr] = STATE(1218), - [sym__PrimaryExpr] = STATE(1218), - [sym_IfExpr] = STATE(1218), - [sym_Block] = STATE(1218), - [sym_LoopExpr] = STATE(1218), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1218), - [sym__TypeExpr] = STATE(989), - [sym_ErrorUnionExpr] = STATE(989), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1218), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [209] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1489), + [sym_BinaryExpr] = STATE(1489), + [sym_UnaryExpr] = STATE(1489), + [sym__PrimaryExpr] = STATE(1489), + [sym_IfExpr] = STATE(1489), + [sym_Block] = STATE(1489), + [sym_LoopExpr] = STATE(1489), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1489), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1489), + [sym_BlockLabel] = STATE(1913), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -34935,88 +33516,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [224] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(859), - [sym_BinaryExpr] = STATE(859), - [sym_UnaryExpr] = STATE(859), - [sym__PrimaryExpr] = STATE(859), - [sym_IfExpr] = STATE(859), - [sym_Block] = STATE(859), - [sym_LoopExpr] = STATE(859), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(859), - [sym__TypeExpr] = STATE(781), - [sym_ErrorUnionExpr] = STATE(781), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [210] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1564), + [sym_BinaryExpr] = STATE(1564), + [sym_UnaryExpr] = STATE(1564), + [sym__PrimaryExpr] = STATE(1564), + [sym_IfExpr] = STATE(1564), + [sym_Block] = STATE(1564), + [sym_LoopExpr] = STATE(1564), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1564), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(859), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1564), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -35049,69 +33630,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [225] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1470), - [sym_BinaryExpr] = STATE(1470), - [sym_UnaryExpr] = STATE(1470), - [sym__PrimaryExpr] = STATE(1470), - [sym_IfExpr] = STATE(1470), - [sym_Block] = STATE(1470), - [sym_LoopExpr] = STATE(1470), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1470), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [211] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1512), + [sym_BinaryExpr] = STATE(1512), + [sym_UnaryExpr] = STATE(1512), + [sym__PrimaryExpr] = STATE(1512), + [sym_IfExpr] = STATE(1512), + [sym_Block] = STATE(1512), + [sym_LoopExpr] = STATE(1512), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1512), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1470), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1512), [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), + [sym_IfPrefix] = STATE(217), + [sym_WhilePrefix] = STATE(234), + [sym_ForPrefix] = STATE(247), + [sym_PrefixOp] = STATE(193), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(287), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(289), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), + [anon_sym_nosuspend] = ACTIONS(295), + [anon_sym_break] = ACTIONS(297), [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), + [anon_sym_resume] = ACTIONS(295), + [anon_sym_return] = ACTIONS(299), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -35153,61 +33734,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [226] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1229), - [sym_BinaryExpr] = STATE(1229), - [sym_UnaryExpr] = STATE(1229), - [sym__PrimaryExpr] = STATE(1229), - [sym_IfExpr] = STATE(1229), - [sym_Block] = STATE(1229), - [sym_LoopExpr] = STATE(1229), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1229), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1229), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), + [212] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1230), + [sym_BinaryExpr] = STATE(1230), + [sym_UnaryExpr] = STATE(1230), + [sym__PrimaryExpr] = STATE(1230), + [sym_IfExpr] = STATE(1230), + [sym_Block] = STATE(1230), + [sym_LoopExpr] = STATE(1230), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1230), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1230), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(177), [anon_sym_break] = ACTIONS(179), @@ -35257,269 +33838,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [227] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1472), - [sym_BinaryExpr] = STATE(1472), - [sym_UnaryExpr] = STATE(1472), - [sym__PrimaryExpr] = STATE(1472), - [sym_IfExpr] = STATE(1472), - [sym_Block] = STATE(1472), - [sym_LoopExpr] = STATE(1472), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1472), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1472), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [228] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1471), - [sym_BinaryExpr] = STATE(1471), - [sym_UnaryExpr] = STATE(1471), - [sym__PrimaryExpr] = STATE(1471), - [sym_IfExpr] = STATE(1471), - [sym_Block] = STATE(1471), - [sym_LoopExpr] = STATE(1471), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1471), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1471), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [229] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1228), - [sym_BinaryExpr] = STATE(1228), - [sym_UnaryExpr] = STATE(1228), - [sym__PrimaryExpr] = STATE(1228), - [sym_IfExpr] = STATE(1228), - [sym_Block] = STATE(1228), - [sym_LoopExpr] = STATE(1228), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1228), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1228), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), + [213] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1227), + [sym_BinaryExpr] = STATE(1227), + [sym_UnaryExpr] = STATE(1227), + [sym__PrimaryExpr] = STATE(1227), + [sym_IfExpr] = STATE(1227), + [sym_Block] = STATE(1227), + [sym_LoopExpr] = STATE(1227), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1227), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1227), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(177), [anon_sym_break] = ACTIONS(179), @@ -35569,82 +33942,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [230] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1227), - [sym_BinaryExpr] = STATE(1227), - [sym_UnaryExpr] = STATE(1227), - [sym__PrimaryExpr] = STATE(1227), - [sym_IfExpr] = STATE(1227), - [sym_Block] = STATE(1227), - [sym_LoopExpr] = STATE(1227), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1227), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1227), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [214] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(901), + [sym_BinaryExpr] = STATE(901), + [sym_UnaryExpr] = STATE(901), + [sym__PrimaryExpr] = STATE(901), + [sym_IfExpr] = STATE(901), + [sym_Block] = STATE(901), + [sym_LoopExpr] = STATE(901), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(901), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(901), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -35663,67 +34036,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [231] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1465), - [sym_BinaryExpr] = STATE(1465), - [sym_UnaryExpr] = STATE(1465), - [sym__PrimaryExpr] = STATE(1465), - [sym_IfExpr] = STATE(1465), - [sym_Block] = STATE(1465), - [sym_LoopExpr] = STATE(1465), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1465), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [215] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1479), + [sym_BinaryExpr] = STATE(1479), + [sym_UnaryExpr] = STATE(1479), + [sym__PrimaryExpr] = STATE(1479), + [sym_IfExpr] = STATE(1479), + [sym_Block] = STATE(1479), + [sym_LoopExpr] = STATE(1479), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1479), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1465), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1479), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -35777,57 +34150,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [232] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1464), - [sym_BinaryExpr] = STATE(1464), - [sym_UnaryExpr] = STATE(1464), - [sym__PrimaryExpr] = STATE(1464), - [sym_IfExpr] = STATE(1464), - [sym_Block] = STATE(1464), - [sym_LoopExpr] = STATE(1464), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1464), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [216] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(900), + [sym_BinaryExpr] = STATE(900), + [sym_UnaryExpr] = STATE(900), + [sym__PrimaryExpr] = STATE(900), + [sym_IfExpr] = STATE(900), + [sym_Block] = STATE(900), + [sym_LoopExpr] = STATE(900), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(900), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(900), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [217] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1457), + [sym_BinaryExpr] = STATE(1457), + [sym_UnaryExpr] = STATE(1457), + [sym__PrimaryExpr] = STATE(1457), + [sym_IfExpr] = STATE(1457), + [sym_Block] = STATE(1457), + [sym_LoopExpr] = STATE(1457), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1457), + [sym__TypeExpr] = STATE(1330), + [sym_ErrorUnionExpr] = STATE(1330), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1464), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1457), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -35839,16 +34316,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(227), [anon_sym_return] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -35881,82 +34358,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [233] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1226), - [sym_BinaryExpr] = STATE(1226), - [sym_UnaryExpr] = STATE(1226), - [sym__PrimaryExpr] = STATE(1226), - [sym_IfExpr] = STATE(1226), - [sym_Block] = STATE(1226), - [sym_LoopExpr] = STATE(1226), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1226), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1226), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [218] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(876), + [sym_BinaryExpr] = STATE(876), + [sym_UnaryExpr] = STATE(876), + [sym__PrimaryExpr] = STATE(876), + [sym_IfExpr] = STATE(876), + [sym_Block] = STATE(876), + [sym_LoopExpr] = STATE(876), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(876), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(876), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -35975,67 +34452,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [234] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1463), - [sym_BinaryExpr] = STATE(1463), - [sym_UnaryExpr] = STATE(1463), - [sym__PrimaryExpr] = STATE(1463), - [sym_IfExpr] = STATE(1463), - [sym_Block] = STATE(1463), - [sym_LoopExpr] = STATE(1463), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1463), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1463), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), + [219] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1604), + [sym_BinaryExpr] = STATE(1604), + [sym_UnaryExpr] = STATE(1604), + [sym__PrimaryExpr] = STATE(1604), + [sym_IfExpr] = STATE(1604), + [sym_Block] = STATE(1604), + [sym_LoopExpr] = STATE(1604), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1604), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1604), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [220] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1566), + [sym_BinaryExpr] = STATE(1566), + [sym_UnaryExpr] = STATE(1566), + [sym__PrimaryExpr] = STATE(1566), + [sym_IfExpr] = STATE(1566), + [sym_Block] = STATE(1566), + [sym_LoopExpr] = STATE(1566), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1566), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1566), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [221] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1221), + [sym_BinaryExpr] = STATE(1221), + [sym_UnaryExpr] = STATE(1221), + [sym__PrimaryExpr] = STATE(1221), + [sym_IfExpr] = STATE(1221), + [sym_Block] = STATE(1221), + [sym_LoopExpr] = STATE(1221), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1221), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1221), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [222] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1221), + [sym_BinaryExpr] = STATE(1221), + [sym_UnaryExpr] = STATE(1221), + [sym__PrimaryExpr] = STATE(1221), + [sym_IfExpr] = STATE(1221), + [sym_Block] = STATE(1221), + [sym_LoopExpr] = STATE(1221), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1221), + [sym__TypeExpr] = STATE(1017), + [sym_ErrorUnionExpr] = STATE(1017), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1221), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [223] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(889), + [sym_BinaryExpr] = STATE(889), + [sym_UnaryExpr] = STATE(889), + [sym__PrimaryExpr] = STATE(889), + [sym_IfExpr] = STATE(889), + [sym_Block] = STATE(889), + [sym_LoopExpr] = STATE(889), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(889), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(889), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [224] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1472), + [sym_BinaryExpr] = STATE(1472), + [sym_UnaryExpr] = STATE(1472), + [sym__PrimaryExpr] = STATE(1472), + [sym_IfExpr] = STATE(1472), + [sym_Block] = STATE(1472), + [sym_LoopExpr] = STATE(1472), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1472), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1472), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -36089,12 +35086,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [235] = { - [sym_FnProto] = STATE(1294), + [225] = { + [sym_FnProto] = STATE(1296), [sym__Expr] = STATE(1468), [sym_BinaryExpr] = STATE(1468), [sym_UnaryExpr] = STATE(1468), @@ -36102,44 +35099,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1468), [sym_Block] = STATE(1468), [sym_LoopExpr] = STATE(1468), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), [sym__CurlySuffixExpr] = STATE(1468), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), [sym_AsmExpr] = STATE(1468), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -36193,82 +35190,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [236] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1222), - [sym_BinaryExpr] = STATE(1222), - [sym_UnaryExpr] = STATE(1222), - [sym__PrimaryExpr] = STATE(1222), - [sym_IfExpr] = STATE(1222), - [sym_Block] = STATE(1222), - [sym_LoopExpr] = STATE(1222), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1222), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1222), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [226] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1473), + [sym_BinaryExpr] = STATE(1473), + [sym_UnaryExpr] = STATE(1473), + [sym__PrimaryExpr] = STATE(1473), + [sym_IfExpr] = STATE(1473), + [sym_Block] = STATE(1473), + [sym_LoopExpr] = STATE(1473), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1473), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1473), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -36287,92 +35284,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [237] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1235), - [sym_BinaryExpr] = STATE(1235), - [sym_UnaryExpr] = STATE(1235), - [sym__PrimaryExpr] = STATE(1235), - [sym_IfExpr] = STATE(1235), - [sym_Block] = STATE(1235), - [sym_LoopExpr] = STATE(1235), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1235), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1235), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [227] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1476), + [sym_BinaryExpr] = STATE(1476), + [sym_UnaryExpr] = STATE(1476), + [sym__PrimaryExpr] = STATE(1476), + [sym_IfExpr] = STATE(1476), + [sym_Block] = STATE(1476), + [sym_LoopExpr] = STATE(1476), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1476), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1476), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -36391,92 +35388,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [238] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1459), - [sym_BinaryExpr] = STATE(1459), - [sym_UnaryExpr] = STATE(1459), - [sym__PrimaryExpr] = STATE(1459), - [sym_IfExpr] = STATE(1459), - [sym_Block] = STATE(1459), - [sym_LoopExpr] = STATE(1459), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1459), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1459), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [228] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1118), + [sym_BinaryExpr] = STATE(1118), + [sym_UnaryExpr] = STATE(1118), + [sym__PrimaryExpr] = STATE(1118), + [sym_IfExpr] = STATE(1118), + [sym_Block] = STATE(1118), + [sym_LoopExpr] = STATE(1118), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1118), + [sym__TypeExpr] = STATE(955), + [sym_ErrorUnionExpr] = STATE(955), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1118), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -36495,92 +35492,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [239] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1221), - [sym_BinaryExpr] = STATE(1221), - [sym_UnaryExpr] = STATE(1221), - [sym__PrimaryExpr] = STATE(1221), - [sym_IfExpr] = STATE(1221), - [sym_Block] = STATE(1221), - [sym_LoopExpr] = STATE(1221), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1221), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1221), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [229] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1119), + [sym_BinaryExpr] = STATE(1119), + [sym_UnaryExpr] = STATE(1119), + [sym__PrimaryExpr] = STATE(1119), + [sym_IfExpr] = STATE(1119), + [sym_Block] = STATE(1119), + [sym_LoopExpr] = STATE(1119), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1119), + [sym__TypeExpr] = STATE(956), + [sym_ErrorUnionExpr] = STATE(956), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1119), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -36599,92 +35596,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [240] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(917), - [sym_BinaryExpr] = STATE(917), - [sym_UnaryExpr] = STATE(917), - [sym__PrimaryExpr] = STATE(917), - [sym_IfExpr] = STATE(917), - [sym_Block] = STATE(917), - [sym_LoopExpr] = STATE(917), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(917), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(917), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [230] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1481), + [sym_BinaryExpr] = STATE(1481), + [sym_UnaryExpr] = STATE(1481), + [sym__PrimaryExpr] = STATE(1481), + [sym_IfExpr] = STATE(1481), + [sym_Block] = STATE(1481), + [sym_LoopExpr] = STATE(1481), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1481), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1481), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -36703,67 +35700,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [241] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1455), - [sym_BinaryExpr] = STATE(1455), - [sym_UnaryExpr] = STATE(1455), - [sym__PrimaryExpr] = STATE(1455), - [sym_IfExpr] = STATE(1455), - [sym_Block] = STATE(1455), - [sym_LoopExpr] = STATE(1455), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1455), - [sym__TypeExpr] = STATE(1320), - [sym_ErrorUnionExpr] = STATE(1320), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [231] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1482), + [sym_BinaryExpr] = STATE(1482), + [sym_UnaryExpr] = STATE(1482), + [sym__PrimaryExpr] = STATE(1482), + [sym_IfExpr] = STATE(1482), + [sym_Block] = STATE(1482), + [sym_LoopExpr] = STATE(1482), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1482), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1455), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1482), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -36775,16 +35772,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(227), [anon_sym_return] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(237), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -36817,57 +35814,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [242] = { - [sym_FnProto] = STATE(1294), - [sym__Expr] = STATE(1476), - [sym_BinaryExpr] = STATE(1476), - [sym_UnaryExpr] = STATE(1476), - [sym__PrimaryExpr] = STATE(1476), - [sym_IfExpr] = STATE(1476), - [sym_Block] = STATE(1476), - [sym_LoopExpr] = STATE(1476), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1476), - [sym__TypeExpr] = STATE(1565), - [sym_ErrorUnionExpr] = STATE(1565), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [232] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1485), + [sym_BinaryExpr] = STATE(1485), + [sym_UnaryExpr] = STATE(1485), + [sym__PrimaryExpr] = STATE(1485), + [sym_IfExpr] = STATE(1485), + [sym_Block] = STATE(1485), + [sym_LoopExpr] = STATE(1485), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1485), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_AsmExpr] = STATE(1476), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1485), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -36921,57 +35918,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [243] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1456), - [sym_BinaryExpr] = STATE(1456), - [sym_UnaryExpr] = STATE(1456), - [sym__PrimaryExpr] = STATE(1456), - [sym_IfExpr] = STATE(1456), - [sym_Block] = STATE(1456), - [sym_LoopExpr] = STATE(1456), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1456), - [sym__TypeExpr] = STATE(1326), - [sym_ErrorUnionExpr] = STATE(1326), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [233] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1120), + [sym_BinaryExpr] = STATE(1120), + [sym_UnaryExpr] = STATE(1120), + [sym__PrimaryExpr] = STATE(1120), + [sym_IfExpr] = STATE(1120), + [sym_Block] = STATE(1120), + [sym_LoopExpr] = STATE(1120), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1120), + [sym__TypeExpr] = STATE(949), + [sym_ErrorUnionExpr] = STATE(949), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1120), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [234] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1449), + [sym_BinaryExpr] = STATE(1449), + [sym_UnaryExpr] = STATE(1449), + [sym__PrimaryExpr] = STATE(1449), + [sym_IfExpr] = STATE(1449), + [sym_Block] = STATE(1449), + [sym_LoopExpr] = STATE(1449), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1449), + [sym__TypeExpr] = STATE(1332), + [sym_ErrorUnionExpr] = STATE(1332), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1456), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1449), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -36983,16 +36084,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(227), [anon_sym_return] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -37025,70 +36126,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [244] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1551), - [sym_BinaryExpr] = STATE(1551), - [sym_UnaryExpr] = STATE(1551), - [sym__PrimaryExpr] = STATE(1551), - [sym_IfExpr] = STATE(1551), - [sym_Block] = STATE(1551), - [sym_LoopExpr] = STATE(1551), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1551), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [235] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1495), + [sym_BinaryExpr] = STATE(1495), + [sym_UnaryExpr] = STATE(1495), + [sym__PrimaryExpr] = STATE(1495), + [sym_IfExpr] = STATE(1495), + [sym_Block] = STATE(1495), + [sym_LoopExpr] = STATE(1495), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1495), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1551), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1495), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(816), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37129,70 +36230,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [245] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1548), - [sym_BinaryExpr] = STATE(1548), - [sym_UnaryExpr] = STATE(1548), - [sym__PrimaryExpr] = STATE(1548), - [sym_IfExpr] = STATE(1548), - [sym_Block] = STATE(1548), - [sym_LoopExpr] = STATE(1548), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1548), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [236] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(887), + [sym_BinaryExpr] = STATE(887), + [sym_UnaryExpr] = STATE(887), + [sym__PrimaryExpr] = STATE(887), + [sym_IfExpr] = STATE(887), + [sym_Block] = STATE(887), + [sym_LoopExpr] = STATE(887), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(887), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1548), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(887), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37233,70 +36334,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [246] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(882), - [sym_BinaryExpr] = STATE(882), - [sym_UnaryExpr] = STATE(882), - [sym__PrimaryExpr] = STATE(882), - [sym_IfExpr] = STATE(882), - [sym_Block] = STATE(882), - [sym_LoopExpr] = STATE(882), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(882), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [237] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(907), + [sym_BinaryExpr] = STATE(907), + [sym_UnaryExpr] = STATE(907), + [sym__PrimaryExpr] = STATE(907), + [sym_IfExpr] = STATE(907), + [sym_Block] = STATE(907), + [sym_LoopExpr] = STATE(907), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(907), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(882), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(907), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37337,174 +36438,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [247] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1233), - [sym_BinaryExpr] = STATE(1233), - [sym_UnaryExpr] = STATE(1233), - [sym__PrimaryExpr] = STATE(1233), - [sym_IfExpr] = STATE(1233), - [sym_Block] = STATE(1233), - [sym_LoopExpr] = STATE(1233), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1233), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1233), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [248] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1511), - [sym_BinaryExpr] = STATE(1511), - [sym_UnaryExpr] = STATE(1511), - [sym__PrimaryExpr] = STATE(1511), - [sym_IfExpr] = STATE(1511), - [sym_Block] = STATE(1511), - [sym_LoopExpr] = STATE(1511), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1511), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [238] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1484), + [sym_BinaryExpr] = STATE(1484), + [sym_UnaryExpr] = STATE(1484), + [sym__PrimaryExpr] = STATE(1484), + [sym_IfExpr] = STATE(1484), + [sym_Block] = STATE(1484), + [sym_LoopExpr] = STATE(1484), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1484), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1511), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1484), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(826), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(818), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37545,70 +36542,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [249] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1457), - [sym_BinaryExpr] = STATE(1457), - [sym_UnaryExpr] = STATE(1457), - [sym__PrimaryExpr] = STATE(1457), - [sym_IfExpr] = STATE(1457), - [sym_Block] = STATE(1457), - [sym_LoopExpr] = STATE(1457), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1457), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [239] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1478), + [sym_BinaryExpr] = STATE(1478), + [sym_UnaryExpr] = STATE(1478), + [sym__PrimaryExpr] = STATE(1478), + [sym_IfExpr] = STATE(1478), + [sym_Block] = STATE(1478), + [sym_LoopExpr] = STATE(1478), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1478), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1457), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1478), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37649,57 +36646,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [250] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(883), - [sym_BinaryExpr] = STATE(883), - [sym_UnaryExpr] = STATE(883), - [sym__PrimaryExpr] = STATE(883), - [sym_IfExpr] = STATE(883), - [sym_Block] = STATE(883), - [sym_LoopExpr] = STATE(883), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(883), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [240] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1223), + [sym_BinaryExpr] = STATE(1223), + [sym_UnaryExpr] = STATE(1223), + [sym__PrimaryExpr] = STATE(1223), + [sym_IfExpr] = STATE(1223), + [sym_Block] = STATE(1223), + [sym_LoopExpr] = STATE(1223), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1223), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1223), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [241] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(898), + [sym_BinaryExpr] = STATE(898), + [sym_UnaryExpr] = STATE(898), + [sym__PrimaryExpr] = STATE(898), + [sym_IfExpr] = STATE(898), + [sym_Block] = STATE(898), + [sym_LoopExpr] = STATE(898), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(898), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(883), - [sym_BlockLabel] = STATE(1911), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(898), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(41), @@ -37712,7 +36813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37753,82 +36854,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [251] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1215), - [sym_BinaryExpr] = STATE(1215), - [sym_UnaryExpr] = STATE(1215), - [sym__PrimaryExpr] = STATE(1215), - [sym_IfExpr] = STATE(1215), - [sym_Block] = STATE(1215), - [sym_LoopExpr] = STATE(1215), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1215), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1215), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [242] = { + [sym_FnProto] = STATE(1296), + [sym__Expr] = STATE(1483), + [sym_BinaryExpr] = STATE(1483), + [sym_UnaryExpr] = STATE(1483), + [sym__PrimaryExpr] = STATE(1483), + [sym_IfExpr] = STATE(1483), + [sym_Block] = STATE(1483), + [sym_LoopExpr] = STATE(1483), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1483), + [sym__TypeExpr] = STATE(1569), + [sym_ErrorUnionExpr] = STATE(1569), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_AsmExpr] = STATE(1483), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -37847,80 +36948,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [252] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1466), - [sym_BinaryExpr] = STATE(1466), - [sym_UnaryExpr] = STATE(1466), - [sym__PrimaryExpr] = STATE(1466), - [sym_IfExpr] = STATE(1466), - [sym_Block] = STATE(1466), - [sym_LoopExpr] = STATE(1466), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1466), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [243] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1567), + [sym_BinaryExpr] = STATE(1567), + [sym_UnaryExpr] = STATE(1567), + [sym__PrimaryExpr] = STATE(1567), + [sym_IfExpr] = STATE(1567), + [sym_Block] = STATE(1567), + [sym_LoopExpr] = STATE(1567), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1567), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1466), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1567), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -37961,57 +37062,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [253] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1562), - [sym_BinaryExpr] = STATE(1562), - [sym_UnaryExpr] = STATE(1562), - [sym__PrimaryExpr] = STATE(1562), - [sym_IfExpr] = STATE(1562), - [sym_Block] = STATE(1562), - [sym_LoopExpr] = STATE(1562), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1562), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [244] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1570), + [sym_BinaryExpr] = STATE(1570), + [sym_UnaryExpr] = STATE(1570), + [sym__PrimaryExpr] = STATE(1570), + [sym_IfExpr] = STATE(1570), + [sym_Block] = STATE(1570), + [sym_LoopExpr] = STATE(1570), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1570), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1562), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1570), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -38024,7 +37125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -38065,82 +37166,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [254] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1199), - [sym_BinaryExpr] = STATE(1199), - [sym_UnaryExpr] = STATE(1199), - [sym__PrimaryExpr] = STATE(1199), - [sym_IfExpr] = STATE(1199), - [sym_Block] = STATE(1199), - [sym_LoopExpr] = STATE(1199), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1199), - [sym__TypeExpr] = STATE(961), - [sym_ErrorUnionExpr] = STATE(961), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1199), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [245] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1551), + [sym_BinaryExpr] = STATE(1551), + [sym_UnaryExpr] = STATE(1551), + [sym__PrimaryExpr] = STATE(1551), + [sym_IfExpr] = STATE(1551), + [sym_Block] = STATE(1551), + [sym_LoopExpr] = STATE(1551), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1551), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1551), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -38159,67 +37260,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [255] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1444), - [sym_BinaryExpr] = STATE(1444), - [sym_UnaryExpr] = STATE(1444), - [sym__PrimaryExpr] = STATE(1444), - [sym_IfExpr] = STATE(1444), - [sym_Block] = STATE(1444), - [sym_LoopExpr] = STATE(1444), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1444), - [sym__TypeExpr] = STATE(1322), - [sym_ErrorUnionExpr] = STATE(1322), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [246] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(907), + [sym_BinaryExpr] = STATE(907), + [sym_UnaryExpr] = STATE(907), + [sym__PrimaryExpr] = STATE(907), + [sym_IfExpr] = STATE(907), + [sym_Block] = STATE(907), + [sym_LoopExpr] = STATE(907), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(907), + [sym__TypeExpr] = STATE(840), + [sym_ErrorUnionExpr] = STATE(840), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(907), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [247] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1451), + [sym_BinaryExpr] = STATE(1451), + [sym_UnaryExpr] = STATE(1451), + [sym__PrimaryExpr] = STATE(1451), + [sym_IfExpr] = STATE(1451), + [sym_Block] = STATE(1451), + [sym_LoopExpr] = STATE(1451), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1451), + [sym__TypeExpr] = STATE(1334), + [sym_ErrorUnionExpr] = STATE(1334), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1444), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1451), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), [anon_sym_comptime] = ACTIONS(217), [anon_sym_extern] = ACTIONS(219), [anon_sym_inline] = ACTIONS(221), @@ -38231,16 +37436,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(227), [anon_sym_return] = ACTIONS(233), [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -38273,82 +37478,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [256] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1124), - [sym_BinaryExpr] = STATE(1124), - [sym_UnaryExpr] = STATE(1124), - [sym__PrimaryExpr] = STATE(1124), - [sym_IfExpr] = STATE(1124), - [sym_Block] = STATE(1124), - [sym_LoopExpr] = STATE(1124), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1124), - [sym__TypeExpr] = STATE(965), - [sym_ErrorUnionExpr] = STATE(965), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1124), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [248] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1553), + [sym_BinaryExpr] = STATE(1553), + [sym_UnaryExpr] = STATE(1553), + [sym__PrimaryExpr] = STATE(1553), + [sym_IfExpr] = STATE(1553), + [sym_Block] = STATE(1553), + [sym_LoopExpr] = STATE(1553), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1553), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1553), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -38367,92 +37572,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [257] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1171), - [sym_BinaryExpr] = STATE(1171), - [sym_UnaryExpr] = STATE(1171), - [sym__PrimaryExpr] = STATE(1171), - [sym_IfExpr] = STATE(1171), - [sym_Block] = STATE(1171), - [sym_LoopExpr] = STATE(1171), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1171), - [sym__TypeExpr] = STATE(980), - [sym_ErrorUnionExpr] = STATE(980), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1171), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [249] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1586), + [sym_BinaryExpr] = STATE(1586), + [sym_UnaryExpr] = STATE(1586), + [sym__PrimaryExpr] = STATE(1586), + [sym_IfExpr] = STATE(1586), + [sym_Block] = STATE(1586), + [sym_LoopExpr] = STATE(1586), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1586), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1586), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -38471,67 +37676,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [258] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1539), - [sym_BinaryExpr] = STATE(1539), - [sym_UnaryExpr] = STATE(1539), - [sym__PrimaryExpr] = STATE(1539), - [sym_IfExpr] = STATE(1539), - [sym_Block] = STATE(1539), - [sym_LoopExpr] = STATE(1539), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1539), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [250] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(905), + [sym_BinaryExpr] = STATE(905), + [sym_UnaryExpr] = STATE(905), + [sym__PrimaryExpr] = STATE(905), + [sym_IfExpr] = STATE(905), + [sym_Block] = STATE(905), + [sym_LoopExpr] = STATE(905), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(905), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1539), - [sym_BlockLabel] = STATE(1911), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(905), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(41), @@ -38544,7 +37749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -38585,70 +37790,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [259] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1526), - [sym_BinaryExpr] = STATE(1526), - [sym_UnaryExpr] = STATE(1526), - [sym__PrimaryExpr] = STATE(1526), - [sym_IfExpr] = STATE(1526), - [sym_Block] = STATE(1526), - [sym_LoopExpr] = STATE(1526), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1526), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [251] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1494), + [sym_BinaryExpr] = STATE(1494), + [sym_UnaryExpr] = STATE(1494), + [sym__PrimaryExpr] = STATE(1494), + [sym_IfExpr] = STATE(1494), + [sym_Block] = STATE(1494), + [sym_LoopExpr] = STATE(1494), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1494), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1526), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1494), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(832), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(820), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -38689,57 +37894,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [260] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1552), - [sym_BinaryExpr] = STATE(1552), - [sym_UnaryExpr] = STATE(1552), - [sym__PrimaryExpr] = STATE(1552), - [sym_IfExpr] = STATE(1552), - [sym_Block] = STATE(1552), - [sym_LoopExpr] = STATE(1552), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1552), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [252] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1600), + [sym_BinaryExpr] = STATE(1600), + [sym_UnaryExpr] = STATE(1600), + [sym__PrimaryExpr] = STATE(1600), + [sym_IfExpr] = STATE(1600), + [sym_Block] = STATE(1600), + [sym_LoopExpr] = STATE(1600), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1600), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1552), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1600), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -38752,7 +37957,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -38793,70 +37998,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [261] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1553), - [sym_BinaryExpr] = STATE(1553), - [sym_UnaryExpr] = STATE(1553), - [sym__PrimaryExpr] = STATE(1553), - [sym_IfExpr] = STATE(1553), - [sym_Block] = STATE(1553), - [sym_LoopExpr] = STATE(1553), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1553), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [253] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1526), + [sym_BinaryExpr] = STATE(1526), + [sym_UnaryExpr] = STATE(1526), + [sym__PrimaryExpr] = STATE(1526), + [sym_IfExpr] = STATE(1526), + [sym_Block] = STATE(1526), + [sym_LoopExpr] = STATE(1526), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1526), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1553), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1526), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(822), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -38897,70 +38102,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [262] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(885), - [sym_BinaryExpr] = STATE(885), - [sym_UnaryExpr] = STATE(885), - [sym__PrimaryExpr] = STATE(885), - [sym_IfExpr] = STATE(885), - [sym_Block] = STATE(885), - [sym_LoopExpr] = STATE(885), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(885), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [254] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1534), + [sym_BinaryExpr] = STATE(1534), + [sym_UnaryExpr] = STATE(1534), + [sym__PrimaryExpr] = STATE(1534), + [sym_IfExpr] = STATE(1534), + [sym_Block] = STATE(1534), + [sym_LoopExpr] = STATE(1534), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1534), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(885), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1534), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39001,82 +38206,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [263] = { - [sym_FnProto] = STATE(940), - [sym__Expr] = STATE(1240), - [sym_BinaryExpr] = STATE(1240), - [sym_UnaryExpr] = STATE(1240), - [sym__PrimaryExpr] = STATE(1240), - [sym_IfExpr] = STATE(1240), - [sym_Block] = STATE(1240), - [sym_LoopExpr] = STATE(1240), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1240), - [sym__TypeExpr] = STATE(1085), - [sym_ErrorUnionExpr] = STATE(1085), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_AsmExpr] = STATE(1240), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [255] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1493), + [sym_BinaryExpr] = STATE(1493), + [sym_UnaryExpr] = STATE(1493), + [sym__PrimaryExpr] = STATE(1493), + [sym_IfExpr] = STATE(1493), + [sym_Block] = STATE(1493), + [sym_LoopExpr] = STATE(1493), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1493), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1493), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(824), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -39095,184 +38300,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [264] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1240), - [sym_BinaryExpr] = STATE(1240), - [sym_UnaryExpr] = STATE(1240), - [sym__PrimaryExpr] = STATE(1240), - [sym_IfExpr] = STATE(1240), - [sym_Block] = STATE(1240), - [sym_LoopExpr] = STATE(1240), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1240), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1240), + [256] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1480), + [sym_BinaryExpr] = STATE(1480), + [sym_UnaryExpr] = STATE(1480), + [sym__PrimaryExpr] = STATE(1480), + [sym_IfExpr] = STATE(1480), + [sym_Block] = STATE(1480), + [sym_LoopExpr] = STATE(1480), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1480), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1480), [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [265] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1554), - [sym_BinaryExpr] = STATE(1554), - [sym_UnaryExpr] = STATE(1554), - [sym__PrimaryExpr] = STATE(1554), - [sym_IfExpr] = STATE(1554), - [sym_Block] = STATE(1554), - [sym_LoopExpr] = STATE(1554), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1554), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1554), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(826), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39313,70 +38414,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [266] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1559), - [sym_BinaryExpr] = STATE(1559), - [sym_UnaryExpr] = STATE(1559), - [sym__PrimaryExpr] = STATE(1559), - [sym_IfExpr] = STATE(1559), - [sym_Block] = STATE(1559), - [sym_LoopExpr] = STATE(1559), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1559), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [257] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1492), + [sym_BinaryExpr] = STATE(1492), + [sym_UnaryExpr] = STATE(1492), + [sym__PrimaryExpr] = STATE(1492), + [sym_IfExpr] = STATE(1492), + [sym_Block] = STATE(1492), + [sym_LoopExpr] = STATE(1492), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1492), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1559), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1492), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(828), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39417,70 +38518,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [267] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1546), - [sym_BinaryExpr] = STATE(1546), - [sym_UnaryExpr] = STATE(1546), - [sym__PrimaryExpr] = STATE(1546), - [sym_IfExpr] = STATE(1546), - [sym_Block] = STATE(1546), - [sym_LoopExpr] = STATE(1546), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1546), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [258] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1529), + [sym_BinaryExpr] = STATE(1529), + [sym_UnaryExpr] = STATE(1529), + [sym__PrimaryExpr] = STATE(1529), + [sym_IfExpr] = STATE(1529), + [sym_Block] = STATE(1529), + [sym_LoopExpr] = STATE(1529), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1529), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1546), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1529), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(830), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39521,57 +38622,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [268] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(922), - [sym_BinaryExpr] = STATE(922), - [sym_UnaryExpr] = STATE(922), - [sym__PrimaryExpr] = STATE(922), - [sym_IfExpr] = STATE(922), - [sym_Block] = STATE(922), - [sym_LoopExpr] = STATE(922), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(922), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [259] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1554), + [sym_BinaryExpr] = STATE(1554), + [sym_UnaryExpr] = STATE(1554), + [sym__PrimaryExpr] = STATE(1554), + [sym_IfExpr] = STATE(1554), + [sym_Block] = STATE(1554), + [sym_LoopExpr] = STATE(1554), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1554), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(922), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1554), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -39584,7 +38685,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39625,82 +38726,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [269] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1519), - [sym_BinaryExpr] = STATE(1519), - [sym_UnaryExpr] = STATE(1519), - [sym__PrimaryExpr] = STATE(1519), - [sym_IfExpr] = STATE(1519), - [sym_Block] = STATE(1519), - [sym_LoopExpr] = STATE(1519), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1519), - [sym__TypeExpr] = STATE(839), - [sym_ErrorUnionExpr] = STATE(839), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1519), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [260] = { + [sym_FnProto] = STATE(936), + [sym__Expr] = STATE(1234), + [sym_BinaryExpr] = STATE(1234), + [sym_UnaryExpr] = STATE(1234), + [sym__PrimaryExpr] = STATE(1234), + [sym_IfExpr] = STATE(1234), + [sym_Block] = STATE(1234), + [sym_LoopExpr] = STATE(1234), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1234), + [sym__TypeExpr] = STATE(1045), + [sym_ErrorUnionExpr] = STATE(1045), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_AsmExpr] = STATE(1234), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -39719,80 +38820,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [270] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1519), - [sym_BinaryExpr] = STATE(1519), - [sym_UnaryExpr] = STATE(1519), - [sym__PrimaryExpr] = STATE(1519), - [sym_IfExpr] = STATE(1519), - [sym_Block] = STATE(1519), - [sym_LoopExpr] = STATE(1519), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1519), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [261] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1585), + [sym_BinaryExpr] = STATE(1585), + [sym_UnaryExpr] = STATE(1585), + [sym__PrimaryExpr] = STATE(1585), + [sym_IfExpr] = STATE(1585), + [sym_Block] = STATE(1585), + [sym_LoopExpr] = STATE(1585), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1585), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1519), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1585), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(315), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -39833,78 +38934,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [271] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(850), - [sym_BinaryExpr] = STATE(850), - [sym_UnaryExpr] = STATE(850), - [sym__PrimaryExpr] = STATE(850), - [sym_IfExpr] = STATE(850), - [sym_Block] = STATE(850), - [sym_LoopExpr] = STATE(850), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(850), - [sym__TypeExpr] = STATE(781), - [sym_ErrorUnionExpr] = STATE(781), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [262] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1555), + [sym_BinaryExpr] = STATE(1555), + [sym_UnaryExpr] = STATE(1555), + [sym__PrimaryExpr] = STATE(1555), + [sym_IfExpr] = STATE(1555), + [sym_Block] = STATE(1555), + [sym_LoopExpr] = STATE(1555), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1555), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(850), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1555), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -39937,82 +39038,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [272] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(845), - [sym_BinaryExpr] = STATE(845), - [sym_UnaryExpr] = STATE(845), - [sym__PrimaryExpr] = STATE(845), - [sym_IfExpr] = STATE(845), - [sym_Block] = STATE(845), - [sym_LoopExpr] = STATE(845), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(845), - [sym__TypeExpr] = STATE(783), - [sym_ErrorUnionExpr] = STATE(783), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(845), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [263] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1234), + [sym_BinaryExpr] = STATE(1234), + [sym_UnaryExpr] = STATE(1234), + [sym__PrimaryExpr] = STATE(1234), + [sym_IfExpr] = STATE(1234), + [sym_Block] = STATE(1234), + [sym_LoopExpr] = STATE(1234), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1234), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1234), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -40031,88 +39132,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [273] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(843), - [sym_BinaryExpr] = STATE(843), - [sym_UnaryExpr] = STATE(843), - [sym__PrimaryExpr] = STATE(843), - [sym_IfExpr] = STATE(843), - [sym_Block] = STATE(843), - [sym_LoopExpr] = STATE(843), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(843), - [sym__TypeExpr] = STATE(785), - [sym_ErrorUnionExpr] = STATE(785), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [264] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1584), + [sym_BinaryExpr] = STATE(1584), + [sym_UnaryExpr] = STATE(1584), + [sym__PrimaryExpr] = STATE(1584), + [sym_IfExpr] = STATE(1584), + [sym_Block] = STATE(1584), + [sym_LoopExpr] = STATE(1584), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1584), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(843), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1584), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40145,82 +39246,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [274] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(881), - [sym_BinaryExpr] = STATE(881), - [sym_UnaryExpr] = STATE(881), - [sym__PrimaryExpr] = STATE(881), - [sym_IfExpr] = STATE(881), - [sym_Block] = STATE(881), - [sym_LoopExpr] = STATE(881), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(881), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(881), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [265] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1229), + [sym_BinaryExpr] = STATE(1229), + [sym_UnaryExpr] = STATE(1229), + [sym__PrimaryExpr] = STATE(1229), + [sym_IfExpr] = STATE(1229), + [sym_Block] = STATE(1229), + [sym_LoopExpr] = STATE(1229), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1229), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1229), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -40239,80 +39340,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [275] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(880), - [sym_BinaryExpr] = STATE(880), - [sym_UnaryExpr] = STATE(880), - [sym__PrimaryExpr] = STATE(880), - [sym_IfExpr] = STATE(880), - [sym_Block] = STATE(880), - [sym_LoopExpr] = STATE(880), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(880), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [266] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1228), + [sym_BinaryExpr] = STATE(1228), + [sym_UnaryExpr] = STATE(1228), + [sym__PrimaryExpr] = STATE(1228), + [sym_IfExpr] = STATE(1228), + [sym_Block] = STATE(1228), + [sym_LoopExpr] = STATE(1228), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1228), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1228), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [267] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1235), + [sym_BinaryExpr] = STATE(1235), + [sym_UnaryExpr] = STATE(1235), + [sym__PrimaryExpr] = STATE(1235), + [sym_IfExpr] = STATE(1235), + [sym_Block] = STATE(1235), + [sym_LoopExpr] = STATE(1235), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1235), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1235), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [268] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1559), + [sym_BinaryExpr] = STATE(1559), + [sym_UnaryExpr] = STATE(1559), + [sym__PrimaryExpr] = STATE(1559), + [sym_IfExpr] = STATE(1559), + [sym_Block] = STATE(1559), + [sym_LoopExpr] = STATE(1559), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1559), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(880), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1559), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -40353,78 +39662,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [276] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1525), - [sym_BinaryExpr] = STATE(1525), - [sym_UnaryExpr] = STATE(1525), - [sym__PrimaryExpr] = STATE(1525), - [sym_IfExpr] = STATE(1525), - [sym_Block] = STATE(1525), - [sym_LoopExpr] = STATE(1525), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1525), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [269] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1523), + [sym_BinaryExpr] = STATE(1523), + [sym_UnaryExpr] = STATE(1523), + [sym__PrimaryExpr] = STATE(1523), + [sym_IfExpr] = STATE(1523), + [sym_Block] = STATE(1523), + [sym_LoopExpr] = STATE(1523), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1523), + [sym__TypeExpr] = STATE(840), + [sym_ErrorUnionExpr] = STATE(840), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1525), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1523), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(840), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40457,78 +39766,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [277] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(922), - [sym_BinaryExpr] = STATE(922), - [sym_UnaryExpr] = STATE(922), - [sym__PrimaryExpr] = STATE(922), - [sym_IfExpr] = STATE(922), - [sym_Block] = STATE(922), - [sym_LoopExpr] = STATE(922), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(922), - [sym__TypeExpr] = STATE(839), - [sym_ErrorUnionExpr] = STATE(839), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [270] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1523), + [sym_BinaryExpr] = STATE(1523), + [sym_UnaryExpr] = STATE(1523), + [sym__PrimaryExpr] = STATE(1523), + [sym_IfExpr] = STATE(1523), + [sym_Block] = STATE(1523), + [sym_LoopExpr] = STATE(1523), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1523), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(922), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1523), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(313), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40561,78 +39870,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [278] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1564), - [sym_BinaryExpr] = STATE(1564), - [sym_UnaryExpr] = STATE(1564), - [sym__PrimaryExpr] = STATE(1564), - [sym_IfExpr] = STATE(1564), - [sym_Block] = STATE(1564), - [sym_LoopExpr] = STATE(1564), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1564), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [271] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(852), + [sym_BinaryExpr] = STATE(852), + [sym_UnaryExpr] = STATE(852), + [sym__PrimaryExpr] = STATE(852), + [sym_IfExpr] = STATE(852), + [sym_Block] = STATE(852), + [sym_LoopExpr] = STATE(852), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(852), + [sym__TypeExpr] = STATE(824), + [sym_ErrorUnionExpr] = STATE(824), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1564), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(852), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40665,78 +39974,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [279] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1583), - [sym_BinaryExpr] = STATE(1583), - [sym_UnaryExpr] = STATE(1583), - [sym__PrimaryExpr] = STATE(1583), - [sym_IfExpr] = STATE(1583), - [sym_Block] = STATE(1583), - [sym_LoopExpr] = STATE(1583), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1583), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [272] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(853), + [sym_BinaryExpr] = STATE(853), + [sym_UnaryExpr] = STATE(853), + [sym__PrimaryExpr] = STATE(853), + [sym_IfExpr] = STATE(853), + [sym_Block] = STATE(853), + [sym_LoopExpr] = STATE(853), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(853), + [sym__TypeExpr] = STATE(827), + [sym_ErrorUnionExpr] = STATE(827), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1583), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(853), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40769,57 +40078,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [280] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(879), - [sym_BinaryExpr] = STATE(879), - [sym_UnaryExpr] = STATE(879), - [sym__PrimaryExpr] = STATE(879), - [sym_IfExpr] = STATE(879), - [sym_Block] = STATE(879), - [sym_LoopExpr] = STATE(879), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(879), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [273] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(855), + [sym_BinaryExpr] = STATE(855), + [sym_UnaryExpr] = STATE(855), + [sym__PrimaryExpr] = STATE(855), + [sym_IfExpr] = STATE(855), + [sym_Block] = STATE(855), + [sym_LoopExpr] = STATE(855), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(855), + [sym__TypeExpr] = STATE(830), + [sym_ErrorUnionExpr] = STATE(830), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(879), - [sym_BlockLabel] = STATE(1911), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(855), + [sym_BlockLabel] = STATE(1923), [sym_IfPrefix] = STATE(271), [sym_WhilePrefix] = STATE(272), [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(41), @@ -40831,16 +40140,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(51), [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -40873,57 +40182,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [281] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1561), - [sym_BinaryExpr] = STATE(1561), - [sym_UnaryExpr] = STATE(1561), - [sym__PrimaryExpr] = STATE(1561), - [sym_IfExpr] = STATE(1561), - [sym_Block] = STATE(1561), - [sym_LoopExpr] = STATE(1561), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1561), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [274] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1565), + [sym_BinaryExpr] = STATE(1565), + [sym_UnaryExpr] = STATE(1565), + [sym__PrimaryExpr] = STATE(1565), + [sym_IfExpr] = STATE(1565), + [sym_Block] = STATE(1565), + [sym_LoopExpr] = STATE(1565), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1565), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1561), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1565), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -40936,7 +40245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -40977,70 +40286,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [282] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1596), - [sym_BinaryExpr] = STATE(1596), - [sym_UnaryExpr] = STATE(1596), - [sym__PrimaryExpr] = STATE(1596), - [sym_IfExpr] = STATE(1596), - [sym_Block] = STATE(1596), - [sym_LoopExpr] = STATE(1596), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1596), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [275] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(904), + [sym_BinaryExpr] = STATE(904), + [sym_UnaryExpr] = STATE(904), + [sym__PrimaryExpr] = STATE(904), + [sym_IfExpr] = STATE(904), + [sym_Block] = STATE(904), + [sym_LoopExpr] = STATE(904), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(904), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1596), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(904), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -41081,70 +40390,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [283] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1493), - [sym_BinaryExpr] = STATE(1493), - [sym_UnaryExpr] = STATE(1493), - [sym__PrimaryExpr] = STATE(1493), - [sym_IfExpr] = STATE(1493), - [sym_Block] = STATE(1493), - [sym_LoopExpr] = STATE(1493), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1493), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [276] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1490), + [sym_BinaryExpr] = STATE(1490), + [sym_UnaryExpr] = STATE(1490), + [sym__PrimaryExpr] = STATE(1490), + [sym_IfExpr] = STATE(1490), + [sym_Block] = STATE(1490), + [sym_LoopExpr] = STATE(1490), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1490), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1493), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1490), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(842), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(838), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -41185,57 +40494,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [284] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1533), - [sym_BinaryExpr] = STATE(1533), - [sym_UnaryExpr] = STATE(1533), - [sym__PrimaryExpr] = STATE(1533), - [sym_IfExpr] = STATE(1533), - [sym_Block] = STATE(1533), - [sym_LoopExpr] = STATE(1533), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1533), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [277] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1596), + [sym_BinaryExpr] = STATE(1596), + [sym_UnaryExpr] = STATE(1596), + [sym__PrimaryExpr] = STATE(1596), + [sym_IfExpr] = STATE(1596), + [sym_Block] = STATE(1596), + [sym_LoopExpr] = STATE(1596), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1596), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1533), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1596), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -41248,7 +40557,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -41289,70 +40598,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [285] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1469), - [sym_BinaryExpr] = STATE(1469), - [sym_UnaryExpr] = STATE(1469), - [sym__PrimaryExpr] = STATE(1469), - [sym_IfExpr] = STATE(1469), - [sym_Block] = STATE(1469), - [sym_LoopExpr] = STATE(1469), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1469), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [278] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1530), + [sym_BinaryExpr] = STATE(1530), + [sym_UnaryExpr] = STATE(1530), + [sym__PrimaryExpr] = STATE(1530), + [sym_IfExpr] = STATE(1530), + [sym_Block] = STATE(1530), + [sym_LoopExpr] = STATE(1530), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1530), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1469), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1530), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(295), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(840), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -41393,186 +40702,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [286] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1469), - [sym_BinaryExpr] = STATE(1469), - [sym_UnaryExpr] = STATE(1469), - [sym__PrimaryExpr] = STATE(1469), - [sym_IfExpr] = STATE(1469), - [sym_Block] = STATE(1469), - [sym_LoopExpr] = STATE(1469), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1469), - [sym__TypeExpr] = STATE(839), - [sym_ErrorUnionExpr] = STATE(839), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1469), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(295), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [287] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1483), - [sym_BinaryExpr] = STATE(1483), - [sym_UnaryExpr] = STATE(1483), - [sym__PrimaryExpr] = STATE(1483), - [sym_IfExpr] = STATE(1483), - [sym_Block] = STATE(1483), - [sym_LoopExpr] = STATE(1483), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1483), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1483), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [279] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1219), + [sym_BinaryExpr] = STATE(1219), + [sym_UnaryExpr] = STATE(1219), + [sym__PrimaryExpr] = STATE(1219), + [sym_IfExpr] = STATE(1219), + [sym_Block] = STATE(1219), + [sym_LoopExpr] = STATE(1219), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1219), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1219), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -41591,67 +40796,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [288] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1578), - [sym_BinaryExpr] = STATE(1578), - [sym_UnaryExpr] = STATE(1578), - [sym__PrimaryExpr] = STATE(1578), - [sym_IfExpr] = STATE(1578), - [sym_Block] = STATE(1578), - [sym_LoopExpr] = STATE(1578), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1578), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [280] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1568), + [sym_BinaryExpr] = STATE(1568), + [sym_UnaryExpr] = STATE(1568), + [sym__PrimaryExpr] = STATE(1568), + [sym_IfExpr] = STATE(1568), + [sym_Block] = STATE(1568), + [sym_LoopExpr] = STATE(1568), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1568), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1578), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1568), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -41664,7 +40869,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -41705,186 +40910,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [289] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1447), - [sym_BinaryExpr] = STATE(1447), - [sym_UnaryExpr] = STATE(1447), - [sym__PrimaryExpr] = STATE(1447), - [sym_IfExpr] = STATE(1447), - [sym_Block] = STATE(1447), - [sym_LoopExpr] = STATE(1447), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1447), - [sym__TypeExpr] = STATE(1322), - [sym_ErrorUnionExpr] = STATE(1322), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1447), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [290] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1448), - [sym_BinaryExpr] = STATE(1448), - [sym_UnaryExpr] = STATE(1448), - [sym__PrimaryExpr] = STATE(1448), - [sym_IfExpr] = STATE(1448), - [sym_Block] = STATE(1448), - [sym_LoopExpr] = STATE(1448), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1448), - [sym__TypeExpr] = STATE(1326), - [sym_ErrorUnionExpr] = STATE(1326), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1448), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [281] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1217), + [sym_BinaryExpr] = STATE(1217), + [sym_UnaryExpr] = STATE(1217), + [sym__PrimaryExpr] = STATE(1217), + [sym_IfExpr] = STATE(1217), + [sym_Block] = STATE(1217), + [sym_LoopExpr] = STATE(1217), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1217), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1217), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -41903,92 +41004,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [291] = { - [sym_FnProto] = STATE(1303), - [sym__Expr] = STATE(1453), - [sym_BinaryExpr] = STATE(1453), - [sym_UnaryExpr] = STATE(1453), - [sym__PrimaryExpr] = STATE(1453), - [sym_IfExpr] = STATE(1453), - [sym_Block] = STATE(1453), - [sym_LoopExpr] = STATE(1453), - [sym_ForExpr] = STATE(1613), - [sym_WhileExpr] = STATE(1613), - [sym__CurlySuffixExpr] = STATE(1453), - [sym__TypeExpr] = STATE(1320), - [sym_ErrorUnionExpr] = STATE(1320), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_AsmExpr] = STATE(1453), - [sym_BlockLabel] = STATE(1913), - [sym_IfPrefix] = STATE(291), - [sym_WhilePrefix] = STATE(290), - [sym_ForPrefix] = STATE(289), - [sym_PrefixOp] = STATE(216), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(217), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(221), - [anon_sym_fn] = ACTIONS(223), + [282] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1502), + [sym_BinaryExpr] = STATE(1502), + [sym_UnaryExpr] = STATE(1502), + [sym__PrimaryExpr] = STATE(1502), + [sym_IfExpr] = STATE(1502), + [sym_Block] = STATE(1502), + [sym_LoopExpr] = STATE(1502), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1502), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1502), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(227), - [anon_sym_break] = ACTIONS(229), - [anon_sym_continue] = ACTIONS(231), - [anon_sym_resume] = ACTIONS(227), - [anon_sym_return] = ACTIONS(233), - [anon_sym_LBRACE] = ACTIONS(235), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_asm] = ACTIONS(251), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(842), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -42007,67 +41108,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [292] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1528), - [sym_BinaryExpr] = STATE(1528), - [sym_UnaryExpr] = STATE(1528), - [sym__PrimaryExpr] = STATE(1528), - [sym_IfExpr] = STATE(1528), - [sym_Block] = STATE(1528), - [sym_LoopExpr] = STATE(1528), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1528), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [283] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1599), + [sym_BinaryExpr] = STATE(1599), + [sym_UnaryExpr] = STATE(1599), + [sym__PrimaryExpr] = STATE(1599), + [sym_IfExpr] = STATE(1599), + [sym_Block] = STATE(1599), + [sym_LoopExpr] = STATE(1599), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1599), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1528), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1599), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -42080,7 +41181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42121,82 +41222,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [293] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1223), - [sym_BinaryExpr] = STATE(1223), - [sym_UnaryExpr] = STATE(1223), - [sym__PrimaryExpr] = STATE(1223), - [sym_IfExpr] = STATE(1223), - [sym_Block] = STATE(1223), - [sym_LoopExpr] = STATE(1223), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1223), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1223), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [284] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1215), + [sym_BinaryExpr] = STATE(1215), + [sym_UnaryExpr] = STATE(1215), + [sym__PrimaryExpr] = STATE(1215), + [sym_IfExpr] = STATE(1215), + [sym_Block] = STATE(1215), + [sym_LoopExpr] = STATE(1215), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1215), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1215), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -42215,67 +41316,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [294] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1567), - [sym_BinaryExpr] = STATE(1567), - [sym_UnaryExpr] = STATE(1567), - [sym__PrimaryExpr] = STATE(1567), - [sym_IfExpr] = STATE(1567), - [sym_Block] = STATE(1567), - [sym_LoopExpr] = STATE(1567), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1567), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [285] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1546), + [sym_BinaryExpr] = STATE(1546), + [sym_UnaryExpr] = STATE(1546), + [sym__PrimaryExpr] = STATE(1546), + [sym_IfExpr] = STATE(1546), + [sym_Block] = STATE(1546), + [sym_LoopExpr] = STATE(1546), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1546), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1567), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1546), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -42288,7 +41389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42329,70 +41430,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [295] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1547), - [sym_BinaryExpr] = STATE(1547), - [sym_UnaryExpr] = STATE(1547), - [sym__PrimaryExpr] = STATE(1547), - [sym_IfExpr] = STATE(1547), - [sym_Block] = STATE(1547), - [sym_LoopExpr] = STATE(1547), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1547), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1547), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [286] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1464), + [sym_BinaryExpr] = STATE(1464), + [sym_UnaryExpr] = STATE(1464), + [sym__PrimaryExpr] = STATE(1464), + [sym_IfExpr] = STATE(1464), + [sym_Block] = STATE(1464), + [sym_LoopExpr] = STATE(1464), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1464), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1464), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42433,78 +41534,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [296] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1549), - [sym_BinaryExpr] = STATE(1549), - [sym_UnaryExpr] = STATE(1549), - [sym__PrimaryExpr] = STATE(1549), - [sym_IfExpr] = STATE(1549), - [sym_Block] = STATE(1549), - [sym_LoopExpr] = STATE(1549), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1549), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [287] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1464), + [sym_BinaryExpr] = STATE(1464), + [sym_UnaryExpr] = STATE(1464), + [sym__PrimaryExpr] = STATE(1464), + [sym_IfExpr] = STATE(1464), + [sym_Block] = STATE(1464), + [sym_LoopExpr] = STATE(1464), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1464), + [sym__TypeExpr] = STATE(840), + [sym_ErrorUnionExpr] = STATE(840), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1549), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1464), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(279), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -42537,70 +41638,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [297] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1575), - [sym_BinaryExpr] = STATE(1575), - [sym_UnaryExpr] = STATE(1575), - [sym__PrimaryExpr] = STATE(1575), - [sym_IfExpr] = STATE(1575), - [sym_Block] = STATE(1575), - [sym_LoopExpr] = STATE(1575), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1575), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [288] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1503), + [sym_BinaryExpr] = STATE(1503), + [sym_UnaryExpr] = STATE(1503), + [sym__PrimaryExpr] = STATE(1503), + [sym_IfExpr] = STATE(1503), + [sym_Block] = STATE(1503), + [sym_LoopExpr] = STATE(1503), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1503), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1575), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1503), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(844), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42641,82 +41742,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [298] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1490), - [sym_BinaryExpr] = STATE(1490), - [sym_UnaryExpr] = STATE(1490), - [sym__PrimaryExpr] = STATE(1490), - [sym_IfExpr] = STATE(1490), - [sym_Block] = STATE(1490), - [sym_LoopExpr] = STATE(1490), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1490), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1490), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [289] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1452), + [sym_BinaryExpr] = STATE(1452), + [sym_UnaryExpr] = STATE(1452), + [sym__PrimaryExpr] = STATE(1452), + [sym_IfExpr] = STATE(1452), + [sym_Block] = STATE(1452), + [sym_LoopExpr] = STATE(1452), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1452), + [sym__TypeExpr] = STATE(1334), + [sym_ErrorUnionExpr] = STATE(1334), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1452), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(846), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -42735,67 +41836,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [299] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1545), - [sym_BinaryExpr] = STATE(1545), - [sym_UnaryExpr] = STATE(1545), - [sym__PrimaryExpr] = STATE(1545), - [sym_IfExpr] = STATE(1545), - [sym_Block] = STATE(1545), - [sym_LoopExpr] = STATE(1545), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1545), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [290] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1535), + [sym_BinaryExpr] = STATE(1535), + [sym_UnaryExpr] = STATE(1535), + [sym__PrimaryExpr] = STATE(1535), + [sym_IfExpr] = STATE(1535), + [sym_Block] = STATE(1535), + [sym_LoopExpr] = STATE(1535), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1535), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1545), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1535), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -42808,7 +41909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42849,70 +41950,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [300] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1489), - [sym_BinaryExpr] = STATE(1489), - [sym_UnaryExpr] = STATE(1489), - [sym__PrimaryExpr] = STATE(1489), - [sym_IfExpr] = STATE(1489), - [sym_Block] = STATE(1489), - [sym_LoopExpr] = STATE(1489), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1489), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [291] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1453), + [sym_BinaryExpr] = STATE(1453), + [sym_UnaryExpr] = STATE(1453), + [sym__PrimaryExpr] = STATE(1453), + [sym_IfExpr] = STATE(1453), + [sym_Block] = STATE(1453), + [sym_LoopExpr] = STATE(1453), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1453), + [sym__TypeExpr] = STATE(1332), + [sym_ErrorUnionExpr] = STATE(1332), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1453), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [292] = { + [sym_FnProto] = STATE(1304), + [sym__Expr] = STATE(1454), + [sym_BinaryExpr] = STATE(1454), + [sym_UnaryExpr] = STATE(1454), + [sym__PrimaryExpr] = STATE(1454), + [sym_IfExpr] = STATE(1454), + [sym_Block] = STATE(1454), + [sym_LoopExpr] = STATE(1454), + [sym_ForExpr] = STATE(1616), + [sym_WhileExpr] = STATE(1616), + [sym__CurlySuffixExpr] = STATE(1454), + [sym__TypeExpr] = STATE(1330), + [sym_ErrorUnionExpr] = STATE(1330), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_AsmExpr] = STATE(1454), + [sym_BlockLabel] = STATE(1925), + [sym_IfPrefix] = STATE(292), + [sym_WhilePrefix] = STATE(291), + [sym_ForPrefix] = STATE(289), + [sym_PrefixOp] = STATE(215), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(217), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(221), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(227), + [anon_sym_break] = ACTIONS(229), + [anon_sym_continue] = ACTIONS(231), + [anon_sym_resume] = ACTIONS(227), + [anon_sym_return] = ACTIONS(233), + [anon_sym_LBRACE] = ACTIONS(235), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_asm] = ACTIONS(251), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [293] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1233), + [sym_BinaryExpr] = STATE(1233), + [sym_UnaryExpr] = STATE(1233), + [sym__PrimaryExpr] = STATE(1233), + [sym_IfExpr] = STATE(1233), + [sym_Block] = STATE(1233), + [sym_LoopExpr] = STATE(1233), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1233), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1233), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [294] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1573), + [sym_BinaryExpr] = STATE(1573), + [sym_UnaryExpr] = STATE(1573), + [sym__PrimaryExpr] = STATE(1573), + [sym_IfExpr] = STATE(1573), + [sym_Block] = STATE(1573), + [sym_LoopExpr] = STATE(1573), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1573), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1489), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1573), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(848), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -42953,70 +42366,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [301] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(878), - [sym_BinaryExpr] = STATE(878), - [sym_UnaryExpr] = STATE(878), - [sym__PrimaryExpr] = STATE(878), - [sym_IfExpr] = STATE(878), - [sym_Block] = STATE(878), - [sym_LoopExpr] = STATE(878), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(878), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [295] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1579), + [sym_BinaryExpr] = STATE(1579), + [sym_UnaryExpr] = STATE(1579), + [sym__PrimaryExpr] = STATE(1579), + [sym_IfExpr] = STATE(1579), + [sym_Block] = STATE(1579), + [sym_LoopExpr] = STATE(1579), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1579), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(878), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1579), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43057,57 +42470,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [302] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1485), - [sym_BinaryExpr] = STATE(1485), - [sym_UnaryExpr] = STATE(1485), - [sym__PrimaryExpr] = STATE(1485), - [sym_IfExpr] = STATE(1485), - [sym_Block] = STATE(1485), - [sym_LoopExpr] = STATE(1485), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1485), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [296] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1603), + [sym_BinaryExpr] = STATE(1603), + [sym_UnaryExpr] = STATE(1603), + [sym__PrimaryExpr] = STATE(1603), + [sym_IfExpr] = STATE(1603), + [sym_Block] = STATE(1603), + [sym_LoopExpr] = STATE(1603), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1603), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1485), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1603), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -43120,7 +42533,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43161,70 +42574,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [303] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1488), - [sym_BinaryExpr] = STATE(1488), - [sym_UnaryExpr] = STATE(1488), - [sym__PrimaryExpr] = STATE(1488), - [sym_IfExpr] = STATE(1488), - [sym_Block] = STATE(1488), - [sym_LoopExpr] = STATE(1488), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1488), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), + [297] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1601), + [sym_BinaryExpr] = STATE(1601), + [sym_UnaryExpr] = STATE(1601), + [sym__PrimaryExpr] = STATE(1601), + [sym_IfExpr] = STATE(1601), + [sym_Block] = STATE(1601), + [sym_LoopExpr] = STATE(1601), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1601), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1488), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1601), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43265,57 +42678,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [304] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1592), - [sym_BinaryExpr] = STATE(1592), - [sym_UnaryExpr] = STATE(1592), - [sym__PrimaryExpr] = STATE(1592), - [sym_IfExpr] = STATE(1592), - [sym_Block] = STATE(1592), - [sym_LoopExpr] = STATE(1592), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1592), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [298] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1213), + [sym_BinaryExpr] = STATE(1213), + [sym_UnaryExpr] = STATE(1213), + [sym__PrimaryExpr] = STATE(1213), + [sym_IfExpr] = STATE(1213), + [sym_Block] = STATE(1213), + [sym_LoopExpr] = STATE(1213), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1213), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1213), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [299] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1211), + [sym_BinaryExpr] = STATE(1211), + [sym_UnaryExpr] = STATE(1211), + [sym__PrimaryExpr] = STATE(1211), + [sym_IfExpr] = STATE(1211), + [sym_Block] = STATE(1211), + [sym_LoopExpr] = STATE(1211), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1211), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1211), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [300] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1212), + [sym_BinaryExpr] = STATE(1212), + [sym_UnaryExpr] = STATE(1212), + [sym__PrimaryExpr] = STATE(1212), + [sym_IfExpr] = STATE(1212), + [sym_Block] = STATE(1212), + [sym_LoopExpr] = STATE(1212), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1212), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1212), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [301] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1220), + [sym_BinaryExpr] = STATE(1220), + [sym_UnaryExpr] = STATE(1220), + [sym__PrimaryExpr] = STATE(1220), + [sym_IfExpr] = STATE(1220), + [sym_Block] = STATE(1220), + [sym_LoopExpr] = STATE(1220), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1220), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1220), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [302] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1524), + [sym_BinaryExpr] = STATE(1524), + [sym_UnaryExpr] = STATE(1524), + [sym__PrimaryExpr] = STATE(1524), + [sym_IfExpr] = STATE(1524), + [sym_Block] = STATE(1524), + [sym_LoopExpr] = STATE(1524), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1524), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1592), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1524), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -43328,7 +43157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43369,70 +43198,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [305] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1510), - [sym_BinaryExpr] = STATE(1510), - [sym_UnaryExpr] = STATE(1510), - [sym__PrimaryExpr] = STATE(1510), - [sym_IfExpr] = STATE(1510), - [sym_Block] = STATE(1510), - [sym_LoopExpr] = STATE(1510), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1510), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [303] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1543), + [sym_BinaryExpr] = STATE(1543), + [sym_UnaryExpr] = STATE(1543), + [sym__PrimaryExpr] = STATE(1543), + [sym_IfExpr] = STATE(1543), + [sym_Block] = STATE(1543), + [sym_LoopExpr] = STATE(1543), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1543), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1510), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1543), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(852), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43473,61 +43302,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [306] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1225), - [sym_BinaryExpr] = STATE(1225), - [sym_UnaryExpr] = STATE(1225), - [sym__PrimaryExpr] = STATE(1225), - [sym_IfExpr] = STATE(1225), - [sym_Block] = STATE(1225), - [sym_LoopExpr] = STATE(1225), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1225), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1225), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), + [304] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1238), + [sym_BinaryExpr] = STATE(1238), + [sym_UnaryExpr] = STATE(1238), + [sym__PrimaryExpr] = STATE(1238), + [sym_IfExpr] = STATE(1238), + [sym_Block] = STATE(1238), + [sym_LoopExpr] = STATE(1238), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1238), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1238), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(177), [anon_sym_break] = ACTIONS(179), @@ -43577,161 +43406,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [307] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1487), - [sym_BinaryExpr] = STATE(1487), - [sym_UnaryExpr] = STATE(1487), - [sym__PrimaryExpr] = STATE(1487), - [sym_IfExpr] = STATE(1487), - [sym_Block] = STATE(1487), - [sym_LoopExpr] = STATE(1487), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1487), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [305] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1590), + [sym_BinaryExpr] = STATE(1590), + [sym_UnaryExpr] = STATE(1590), + [sym__PrimaryExpr] = STATE(1590), + [sym_IfExpr] = STATE(1590), + [sym_Block] = STATE(1590), + [sym_LoopExpr] = STATE(1590), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1590), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1487), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1590), [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(854), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [308] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1580), - [sym_BinaryExpr] = STATE(1580), - [sym_UnaryExpr] = STATE(1580), - [sym__PrimaryExpr] = STATE(1580), - [sym_IfExpr] = STATE(1580), - [sym_Block] = STATE(1580), - [sym_LoopExpr] = STATE(1580), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1580), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1580), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -43744,7 +43469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43785,57 +43510,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [309] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1529), - [sym_BinaryExpr] = STATE(1529), - [sym_UnaryExpr] = STATE(1529), - [sym__PrimaryExpr] = STATE(1529), - [sym_IfExpr] = STATE(1529), - [sym_Block] = STATE(1529), - [sym_LoopExpr] = STATE(1529), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1529), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [306] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1597), + [sym_BinaryExpr] = STATE(1597), + [sym_UnaryExpr] = STATE(1597), + [sym__PrimaryExpr] = STATE(1597), + [sym_IfExpr] = STATE(1597), + [sym_Block] = STATE(1597), + [sym_LoopExpr] = STATE(1597), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1597), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1529), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1597), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -43848,7 +43573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43889,70 +43614,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [310] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1514), - [sym_BinaryExpr] = STATE(1514), - [sym_UnaryExpr] = STATE(1514), - [sym__PrimaryExpr] = STATE(1514), - [sym_IfExpr] = STATE(1514), - [sym_Block] = STATE(1514), - [sym_LoopExpr] = STATE(1514), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1514), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1514), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [307] = { + [sym_FnProto] = STATE(922), + [sym__Expr] = STATE(1216), + [sym_BinaryExpr] = STATE(1216), + [sym_UnaryExpr] = STATE(1216), + [sym__PrimaryExpr] = STATE(1216), + [sym_IfExpr] = STATE(1216), + [sym_Block] = STATE(1216), + [sym_LoopExpr] = STATE(1216), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1216), + [sym__TypeExpr] = STATE(1244), + [sym_ErrorUnionExpr] = STATE(1244), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_AsmExpr] = STATE(1216), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(856), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [308] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1462), + [sym_BinaryExpr] = STATE(1462), + [sym_UnaryExpr] = STATE(1462), + [sym__PrimaryExpr] = STATE(1462), + [sym_IfExpr] = STATE(1462), + [sym_Block] = STATE(1462), + [sym_LoopExpr] = STATE(1462), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1462), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1462), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(846), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -43993,182 +43822,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [311] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1232), - [sym_BinaryExpr] = STATE(1232), - [sym_UnaryExpr] = STATE(1232), - [sym__PrimaryExpr] = STATE(1232), - [sym_IfExpr] = STATE(1232), - [sym_Block] = STATE(1232), - [sym_LoopExpr] = STATE(1232), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1232), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1232), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [312] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1446), - [sym_BinaryExpr] = STATE(1446), - [sym_UnaryExpr] = STATE(1446), - [sym__PrimaryExpr] = STATE(1446), - [sym_IfExpr] = STATE(1446), - [sym_Block] = STATE(1446), - [sym_LoopExpr] = STATE(1446), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1446), - [sym__TypeExpr] = STATE(781), - [sym_ErrorUnionExpr] = STATE(781), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [309] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1542), + [sym_BinaryExpr] = STATE(1542), + [sym_UnaryExpr] = STATE(1542), + [sym__PrimaryExpr] = STATE(1542), + [sym_IfExpr] = STATE(1542), + [sym_Block] = STATE(1542), + [sym_LoopExpr] = STATE(1542), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1542), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1446), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1542), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(858), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -44201,57 +43926,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [313] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1571), - [sym_BinaryExpr] = STATE(1571), - [sym_UnaryExpr] = STATE(1571), - [sym__PrimaryExpr] = STATE(1571), - [sym_IfExpr] = STATE(1571), - [sym_Block] = STATE(1571), - [sym_LoopExpr] = STATE(1571), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1571), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [310] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1581), + [sym_BinaryExpr] = STATE(1581), + [sym_UnaryExpr] = STATE(1581), + [sym__PrimaryExpr] = STATE(1581), + [sym_IfExpr] = STATE(1581), + [sym_Block] = STATE(1581), + [sym_LoopExpr] = STATE(1581), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1581), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1571), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1581), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -44264,7 +43989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -44305,57 +44030,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [314] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1598), - [sym_BinaryExpr] = STATE(1598), - [sym_UnaryExpr] = STATE(1598), - [sym__PrimaryExpr] = STATE(1598), - [sym_IfExpr] = STATE(1598), - [sym_Block] = STATE(1598), - [sym_LoopExpr] = STATE(1598), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1598), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [311] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1583), + [sym_BinaryExpr] = STATE(1583), + [sym_UnaryExpr] = STATE(1583), + [sym__PrimaryExpr] = STATE(1583), + [sym_IfExpr] = STATE(1583), + [sym_Block] = STATE(1583), + [sym_LoopExpr] = STATE(1583), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1583), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1598), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1583), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -44368,7 +44093,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -44409,78 +44134,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [315] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1530), - [sym_BinaryExpr] = STATE(1530), - [sym_UnaryExpr] = STATE(1530), - [sym__PrimaryExpr] = STATE(1530), - [sym_IfExpr] = STATE(1530), - [sym_Block] = STATE(1530), - [sym_LoopExpr] = STATE(1530), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1530), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [312] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1459), + [sym_BinaryExpr] = STATE(1459), + [sym_UnaryExpr] = STATE(1459), + [sym__PrimaryExpr] = STATE(1459), + [sym_IfExpr] = STATE(1459), + [sym_Block] = STATE(1459), + [sym_LoopExpr] = STATE(1459), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1459), + [sym__TypeExpr] = STATE(824), + [sym_ErrorUnionExpr] = STATE(824), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1530), - [sym_BlockLabel] = STATE(1919), - [sym_IfPrefix] = STATE(188), - [sym_WhilePrefix] = STATE(187), - [sym_ForPrefix] = STATE(186), - [sym_PrefixOp] = STATE(185), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(305), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1459), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(311), - [anon_sym_break] = ACTIONS(313), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_resume] = ACTIONS(311), - [anon_sym_return] = ACTIONS(317), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(848), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -44513,57 +44238,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [316] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1584), - [sym_BinaryExpr] = STATE(1584), - [sym_UnaryExpr] = STATE(1584), - [sym__PrimaryExpr] = STATE(1584), - [sym_IfExpr] = STATE(1584), - [sym_Block] = STATE(1584), - [sym_LoopExpr] = STATE(1584), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1584), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [313] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1580), + [sym_BinaryExpr] = STATE(1580), + [sym_UnaryExpr] = STATE(1580), + [sym__PrimaryExpr] = STATE(1580), + [sym_IfExpr] = STATE(1580), + [sym_Block] = STATE(1580), + [sym_LoopExpr] = STATE(1580), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1580), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1584), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1580), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -44576,7 +44301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -44617,78 +44342,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [317] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1445), - [sym_BinaryExpr] = STATE(1445), - [sym_UnaryExpr] = STATE(1445), - [sym__PrimaryExpr] = STATE(1445), - [sym_IfExpr] = STATE(1445), - [sym_Block] = STATE(1445), - [sym_LoopExpr] = STATE(1445), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1445), - [sym__TypeExpr] = STATE(783), - [sym_ErrorUnionExpr] = STATE(783), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [314] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1460), + [sym_BinaryExpr] = STATE(1460), + [sym_UnaryExpr] = STATE(1460), + [sym__PrimaryExpr] = STATE(1460), + [sym_IfExpr] = STATE(1460), + [sym_Block] = STATE(1460), + [sym_LoopExpr] = STATE(1460), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1460), + [sym__TypeExpr] = STATE(827), + [sym_ErrorUnionExpr] = STATE(827), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1445), - [sym_BlockLabel] = STATE(1910), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1460), + [sym_BlockLabel] = STATE(1916), [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), + [sym_WhilePrefix] = STATE(314), [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(850), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -44721,78 +44446,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [318] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(1449), - [sym_BinaryExpr] = STATE(1449), - [sym_UnaryExpr] = STATE(1449), - [sym__PrimaryExpr] = STATE(1449), - [sym_IfExpr] = STATE(1449), - [sym_Block] = STATE(1449), - [sym_LoopExpr] = STATE(1449), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1449), - [sym__TypeExpr] = STATE(785), - [sym_ErrorUnionExpr] = STATE(785), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [315] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1557), + [sym_BinaryExpr] = STATE(1557), + [sym_UnaryExpr] = STATE(1557), + [sym__PrimaryExpr] = STATE(1557), + [sym_IfExpr] = STATE(1557), + [sym_Block] = STATE(1557), + [sym_LoopExpr] = STATE(1557), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1557), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(1449), - [sym_BlockLabel] = STATE(1910), - [sym_IfPrefix] = STATE(312), - [sym_WhilePrefix] = STATE(317), - [sym_ForPrefix] = STATE(318), - [sym_PrefixOp] = STATE(212), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(285), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1557), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(287), - [anon_sym_fn] = ACTIONS(289), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(291), - [anon_sym_break] = ACTIONS(293), - [anon_sym_continue] = ACTIONS(864), - [anon_sym_resume] = ACTIONS(291), - [anon_sym_return] = ACTIONS(297), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -44825,57 +44550,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [319] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1593), - [sym_BinaryExpr] = STATE(1593), - [sym_UnaryExpr] = STATE(1593), - [sym__PrimaryExpr] = STATE(1593), - [sym_IfExpr] = STATE(1593), - [sym_Block] = STATE(1593), - [sym_LoopExpr] = STATE(1593), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1593), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [316] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1587), + [sym_BinaryExpr] = STATE(1587), + [sym_UnaryExpr] = STATE(1587), + [sym__PrimaryExpr] = STATE(1587), + [sym_IfExpr] = STATE(1587), + [sym_Block] = STATE(1587), + [sym_LoopExpr] = STATE(1587), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1587), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1593), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1587), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -44888,7 +44613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -44929,82 +44654,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [320] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1216), - [sym_BinaryExpr] = STATE(1216), - [sym_UnaryExpr] = STATE(1216), - [sym__PrimaryExpr] = STATE(1216), - [sym_IfExpr] = STATE(1216), - [sym_Block] = STATE(1216), - [sym_LoopExpr] = STATE(1216), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1216), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1216), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [317] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1538), + [sym_BinaryExpr] = STATE(1538), + [sym_UnaryExpr] = STATE(1538), + [sym__PrimaryExpr] = STATE(1538), + [sym_IfExpr] = STATE(1538), + [sym_Block] = STATE(1538), + [sym_LoopExpr] = STATE(1538), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1538), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1538), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -45023,400 +44748,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [321] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1206), - [sym_BinaryExpr] = STATE(1206), - [sym_UnaryExpr] = STATE(1206), - [sym__PrimaryExpr] = STATE(1206), - [sym_IfExpr] = STATE(1206), - [sym_Block] = STATE(1206), - [sym_LoopExpr] = STATE(1206), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1206), - [sym__TypeExpr] = STATE(966), - [sym_ErrorUnionExpr] = STATE(966), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1206), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [322] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1205), - [sym_BinaryExpr] = STATE(1205), - [sym_UnaryExpr] = STATE(1205), - [sym__PrimaryExpr] = STATE(1205), - [sym_IfExpr] = STATE(1205), - [sym_Block] = STATE(1205), - [sym_LoopExpr] = STATE(1205), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1205), - [sym__TypeExpr] = STATE(967), - [sym_ErrorUnionExpr] = STATE(967), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1205), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [323] = { - [sym_FnProto] = STATE(925), - [sym__Expr] = STATE(1204), - [sym_BinaryExpr] = STATE(1204), - [sym_UnaryExpr] = STATE(1204), - [sym__PrimaryExpr] = STATE(1204), - [sym_IfExpr] = STATE(1204), - [sym_Block] = STATE(1204), - [sym_LoopExpr] = STATE(1204), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1204), - [sym__TypeExpr] = STATE(970), - [sym_ErrorUnionExpr] = STATE(970), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_AsmExpr] = STATE(1204), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_while] = ACTIONS(81), - [anon_sym_for] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_AMP] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(45), - [anon_sym_DASH_PERCENT] = ACTIONS(85), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_TILDE] = ACTIONS(85), - [anon_sym_try] = ACTIONS(45), - [anon_sym_await] = ACTIONS(45), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [324] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1597), - [sym_BinaryExpr] = STATE(1597), - [sym_UnaryExpr] = STATE(1597), - [sym__PrimaryExpr] = STATE(1597), - [sym_IfExpr] = STATE(1597), - [sym_Block] = STATE(1597), - [sym_LoopExpr] = STATE(1597), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1597), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [318] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(1450), + [sym_BinaryExpr] = STATE(1450), + [sym_UnaryExpr] = STATE(1450), + [sym__PrimaryExpr] = STATE(1450), + [sym_IfExpr] = STATE(1450), + [sym_Block] = STATE(1450), + [sym_LoopExpr] = STATE(1450), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1450), + [sym__TypeExpr] = STATE(830), + [sym_ErrorUnionExpr] = STATE(830), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1597), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(1450), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(854), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -45449,57 +44862,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [325] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1585), - [sym_BinaryExpr] = STATE(1585), - [sym_UnaryExpr] = STATE(1585), - [sym__PrimaryExpr] = STATE(1585), - [sym_IfExpr] = STATE(1585), - [sym_Block] = STATE(1585), - [sym_LoopExpr] = STATE(1585), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1585), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [319] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1602), + [sym_BinaryExpr] = STATE(1602), + [sym_UnaryExpr] = STATE(1602), + [sym__PrimaryExpr] = STATE(1602), + [sym_IfExpr] = STATE(1602), + [sym_Block] = STATE(1602), + [sym_LoopExpr] = STATE(1602), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1602), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1585), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1602), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -45512,7 +44925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -45553,70 +44966,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [326] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1543), - [sym_BinaryExpr] = STATE(1543), - [sym_UnaryExpr] = STATE(1543), - [sym__PrimaryExpr] = STATE(1543), - [sym_IfExpr] = STATE(1543), - [sym_Block] = STATE(1543), - [sym_LoopExpr] = STATE(1543), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1543), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [320] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1477), + [sym_BinaryExpr] = STATE(1477), + [sym_UnaryExpr] = STATE(1477), + [sym__PrimaryExpr] = STATE(1477), + [sym_IfExpr] = STATE(1477), + [sym_Block] = STATE(1477), + [sym_LoopExpr] = STATE(1477), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1477), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1543), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1477), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -45657,82 +45070,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [327] = { - [sym_FnProto] = STATE(720), - [sym__Expr] = STATE(886), - [sym_BinaryExpr] = STATE(886), - [sym_UnaryExpr] = STATE(886), - [sym__PrimaryExpr] = STATE(886), - [sym_IfExpr] = STATE(886), - [sym_Block] = STATE(886), - [sym_LoopExpr] = STATE(886), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(886), - [sym__TypeExpr] = STATE(839), - [sym_ErrorUnionExpr] = STATE(839), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_AsmExpr] = STATE(886), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [321] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1150), + [sym_BinaryExpr] = STATE(1150), + [sym_UnaryExpr] = STATE(1150), + [sym__PrimaryExpr] = STATE(1150), + [sym_IfExpr] = STATE(1150), + [sym_Block] = STATE(1150), + [sym_LoopExpr] = STATE(1150), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1150), + [sym__TypeExpr] = STATE(963), + [sym_ErrorUnionExpr] = STATE(963), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1150), + [sym_BlockLabel] = STATE(1920), + [sym_IfPrefix] = STATE(321), + [sym_WhilePrefix] = STATE(322), + [sym_ForPrefix] = STATE(323), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), - [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_asm] = ACTIONS(75), + [anon_sym_nosuspend] = ACTIONS(135), + [anon_sym_break] = ACTIONS(137), + [anon_sym_continue] = ACTIONS(139), + [anon_sym_resume] = ACTIONS(135), + [anon_sym_return] = ACTIONS(141), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_asm] = ACTIONS(161), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -45751,71 +45164,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [328] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1211), - [sym_BinaryExpr] = STATE(1211), - [sym_UnaryExpr] = STATE(1211), - [sym__PrimaryExpr] = STATE(1211), - [sym_IfExpr] = STATE(1211), - [sym_Block] = STATE(1211), - [sym_LoopExpr] = STATE(1211), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1211), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1211), - [sym_BlockLabel] = STATE(1907), + [322] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1151), + [sym_BinaryExpr] = STATE(1151), + [sym_UnaryExpr] = STATE(1151), + [sym__PrimaryExpr] = STATE(1151), + [sym_IfExpr] = STATE(1151), + [sym_Block] = STATE(1151), + [sym_LoopExpr] = STATE(1151), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1151), + [sym__TypeExpr] = STATE(964), + [sym_ErrorUnionExpr] = STATE(964), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1151), + [sym_BlockLabel] = STATE(1920), [sym_IfPrefix] = STATE(321), [sym_WhilePrefix] = STATE(322), [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(135), [anon_sym_break] = ACTIONS(137), @@ -45823,16 +45236,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(135), [anon_sym_return] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -45865,61 +45278,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [329] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1210), - [sym_BinaryExpr] = STATE(1210), - [sym_UnaryExpr] = STATE(1210), - [sym__PrimaryExpr] = STATE(1210), - [sym_IfExpr] = STATE(1210), - [sym_Block] = STATE(1210), - [sym_LoopExpr] = STATE(1210), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1210), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1210), - [sym_BlockLabel] = STATE(1907), + [323] = { + [sym_FnProto] = STATE(915), + [sym__Expr] = STATE(1155), + [sym_BinaryExpr] = STATE(1155), + [sym_UnaryExpr] = STATE(1155), + [sym__PrimaryExpr] = STATE(1155), + [sym_IfExpr] = STATE(1155), + [sym_Block] = STATE(1155), + [sym_LoopExpr] = STATE(1155), + [sym_ForExpr] = STATE(1250), + [sym_WhileExpr] = STATE(1250), + [sym__CurlySuffixExpr] = STATE(1155), + [sym__TypeExpr] = STATE(972), + [sym_ErrorUnionExpr] = STATE(972), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_AsmExpr] = STATE(1155), + [sym_BlockLabel] = STATE(1920), [sym_IfPrefix] = STATE(321), [sym_WhilePrefix] = STATE(322), [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), + [sym_PrefixOp] = STATE(307), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(788), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [anon_sym_inline] = ACTIONS(790), + [anon_sym_fn] = ACTIONS(792), [anon_sym_BANG] = ACTIONS(85), [anon_sym_nosuspend] = ACTIONS(135), [anon_sym_break] = ACTIONS(137), @@ -45927,16 +45340,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_resume] = ACTIONS(135), [anon_sym_return] = ACTIONS(141), [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -45969,70 +45382,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [330] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(886), - [sym_BinaryExpr] = STATE(886), - [sym_UnaryExpr] = STATE(886), - [sym__PrimaryExpr] = STATE(886), - [sym_IfExpr] = STATE(886), - [sym_Block] = STATE(886), - [sym_LoopExpr] = STATE(886), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(886), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [324] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1577), + [sym_BinaryExpr] = STATE(1577), + [sym_UnaryExpr] = STATE(1577), + [sym__PrimaryExpr] = STATE(1577), + [sym_IfExpr] = STATE(1577), + [sym_Block] = STATE(1577), + [sym_LoopExpr] = STATE(1577), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1577), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(886), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1577), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46073,70 +45486,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [331] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1577), - [sym_BinaryExpr] = STATE(1577), - [sym_UnaryExpr] = STATE(1577), - [sym__PrimaryExpr] = STATE(1577), - [sym_IfExpr] = STATE(1577), - [sym_Block] = STATE(1577), - [sym_LoopExpr] = STATE(1577), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1577), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [325] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1497), + [sym_BinaryExpr] = STATE(1497), + [sym_UnaryExpr] = STATE(1497), + [sym__PrimaryExpr] = STATE(1497), + [sym_IfExpr] = STATE(1497), + [sym_Block] = STATE(1497), + [sym_LoopExpr] = STATE(1497), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1497), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1577), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1497), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(858), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46177,70 +45590,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [332] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1572), - [sym_BinaryExpr] = STATE(1572), - [sym_UnaryExpr] = STATE(1572), - [sym__PrimaryExpr] = STATE(1572), - [sym_IfExpr] = STATE(1572), - [sym_Block] = STATE(1572), - [sym_LoopExpr] = STATE(1572), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1572), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [326] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1471), + [sym_BinaryExpr] = STATE(1471), + [sym_UnaryExpr] = STATE(1471), + [sym__PrimaryExpr] = STATE(1471), + [sym_IfExpr] = STATE(1471), + [sym_Block] = STATE(1471), + [sym_LoopExpr] = STATE(1471), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1471), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1572), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1471), + [sym_BlockLabel] = STATE(1916), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46281,57 +45694,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [333] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1599), - [sym_BinaryExpr] = STATE(1599), - [sym_UnaryExpr] = STATE(1599), - [sym__PrimaryExpr] = STATE(1599), - [sym_IfExpr] = STATE(1599), - [sym_Block] = STATE(1599), - [sym_LoopExpr] = STATE(1599), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1599), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [327] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1545), + [sym_BinaryExpr] = STATE(1545), + [sym_UnaryExpr] = STATE(1545), + [sym__PrimaryExpr] = STATE(1545), + [sym_IfExpr] = STATE(1545), + [sym_Block] = STATE(1545), + [sym_LoopExpr] = STATE(1545), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1545), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1599), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1545), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -46344,7 +45757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46385,70 +45798,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [334] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1576), - [sym_BinaryExpr] = STATE(1576), - [sym_UnaryExpr] = STATE(1576), - [sym__PrimaryExpr] = STATE(1576), - [sym_IfExpr] = STATE(1576), - [sym_Block] = STATE(1576), - [sym_LoopExpr] = STATE(1576), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1576), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [328] = { + [sym_FnProto] = STATE(717), + [sym__Expr] = STATE(886), + [sym_BinaryExpr] = STATE(886), + [sym_UnaryExpr] = STATE(886), + [sym__PrimaryExpr] = STATE(886), + [sym_IfExpr] = STATE(886), + [sym_Block] = STATE(886), + [sym_LoopExpr] = STATE(886), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(886), + [sym__TypeExpr] = STATE(840), + [sym_ErrorUnionExpr] = STATE(840), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1576), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [sym_SwitchExpr] = STATE(717), + [sym_AsmExpr] = STATE(886), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [329] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(886), + [sym_BinaryExpr] = STATE(886), + [sym_UnaryExpr] = STATE(886), + [sym__PrimaryExpr] = STATE(886), + [sym_IfExpr] = STATE(886), + [sym_Block] = STATE(886), + [sym_LoopExpr] = STATE(886), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(886), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(886), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46489,57 +46006,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [335] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1574), - [sym_BinaryExpr] = STATE(1574), - [sym_UnaryExpr] = STATE(1574), - [sym__PrimaryExpr] = STATE(1574), - [sym_IfExpr] = STATE(1574), - [sym_Block] = STATE(1574), - [sym_LoopExpr] = STATE(1574), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1574), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [330] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1549), + [sym_BinaryExpr] = STATE(1549), + [sym_UnaryExpr] = STATE(1549), + [sym__PrimaryExpr] = STATE(1549), + [sym_IfExpr] = STATE(1549), + [sym_Block] = STATE(1549), + [sym_LoopExpr] = STATE(1549), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1549), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1574), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1549), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -46552,7 +46069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46593,82 +46110,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [336] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1208), - [sym_BinaryExpr] = STATE(1208), - [sym_UnaryExpr] = STATE(1208), - [sym__PrimaryExpr] = STATE(1208), - [sym_IfExpr] = STATE(1208), - [sym_Block] = STATE(1208), - [sym_LoopExpr] = STATE(1208), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1208), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1208), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [331] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1574), + [sym_BinaryExpr] = STATE(1574), + [sym_UnaryExpr] = STATE(1574), + [sym__PrimaryExpr] = STATE(1574), + [sym_IfExpr] = STATE(1574), + [sym_Block] = STATE(1574), + [sym_LoopExpr] = STATE(1574), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1574), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1574), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -46687,92 +46204,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [337] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1213), - [sym_BinaryExpr] = STATE(1213), - [sym_UnaryExpr] = STATE(1213), - [sym__PrimaryExpr] = STATE(1213), - [sym_IfExpr] = STATE(1213), - [sym_Block] = STATE(1213), - [sym_LoopExpr] = STATE(1213), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1213), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1213), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [332] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1572), + [sym_BinaryExpr] = STATE(1572), + [sym_UnaryExpr] = STATE(1572), + [sym__PrimaryExpr] = STATE(1572), + [sym_IfExpr] = STATE(1572), + [sym_Block] = STATE(1572), + [sym_LoopExpr] = STATE(1572), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1572), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1572), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -46791,67 +46308,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [338] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1536), - [sym_BinaryExpr] = STATE(1536), - [sym_UnaryExpr] = STATE(1536), - [sym__PrimaryExpr] = STATE(1536), - [sym_IfExpr] = STATE(1536), - [sym_Block] = STATE(1536), - [sym_LoopExpr] = STATE(1536), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1536), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [333] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1595), + [sym_BinaryExpr] = STATE(1595), + [sym_UnaryExpr] = STATE(1595), + [sym__PrimaryExpr] = STATE(1595), + [sym_IfExpr] = STATE(1595), + [sym_Block] = STATE(1595), + [sym_LoopExpr] = STATE(1595), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1595), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1536), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1595), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -46864,7 +46381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -46905,82 +46422,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [339] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1237), - [sym_BinaryExpr] = STATE(1237), - [sym_UnaryExpr] = STATE(1237), - [sym__PrimaryExpr] = STATE(1237), - [sym_IfExpr] = STATE(1237), - [sym_Block] = STATE(1237), - [sym_LoopExpr] = STATE(1237), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1237), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1237), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [334] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1576), + [sym_BinaryExpr] = STATE(1576), + [sym_UnaryExpr] = STATE(1576), + [sym__PrimaryExpr] = STATE(1576), + [sym_IfExpr] = STATE(1576), + [sym_Block] = STATE(1576), + [sym_LoopExpr] = STATE(1576), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1576), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1576), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -46999,80 +46516,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [340] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(894), - [sym_BinaryExpr] = STATE(894), - [sym_UnaryExpr] = STATE(894), - [sym__PrimaryExpr] = STATE(894), - [sym_IfExpr] = STATE(894), - [sym_Block] = STATE(894), - [sym_LoopExpr] = STATE(894), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(894), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [335] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1575), + [sym_BinaryExpr] = STATE(1575), + [sym_UnaryExpr] = STATE(1575), + [sym__PrimaryExpr] = STATE(1575), + [sym_IfExpr] = STATE(1575), + [sym_Block] = STATE(1575), + [sym_LoopExpr] = STATE(1575), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1575), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(894), - [sym_BlockLabel] = STATE(1911), - [sym_IfPrefix] = STATE(271), - [sym_WhilePrefix] = STATE(272), - [sym_ForPrefix] = STATE(273), - [sym_PrefixOp] = STATE(262), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(37), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1575), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(41), - [anon_sym_fn] = ACTIONS(43), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(51), - [anon_sym_break] = ACTIONS(53), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(51), - [anon_sym_return] = ACTIONS(57), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47113,12 +46630,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [341] = { - [sym_FnProto] = STATE(719), + [336] = { + [sym_FnProto] = STATE(716), [sym__Expr] = STATE(1537), [sym_BinaryExpr] = STATE(1537), [sym_UnaryExpr] = STATE(1537), @@ -47126,44 +46643,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_IfExpr] = STATE(1537), [sym_Block] = STATE(1537), [sym_LoopExpr] = STATE(1537), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), [sym__CurlySuffixExpr] = STATE(1537), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [sym_SwitchExpr] = STATE(716), [sym_AsmExpr] = STATE(1537), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -47176,7 +46693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47217,71 +46734,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [342] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1230), - [sym_BinaryExpr] = STATE(1230), - [sym_UnaryExpr] = STATE(1230), - [sym__PrimaryExpr] = STATE(1230), - [sym_IfExpr] = STATE(1230), - [sym_Block] = STATE(1230), - [sym_LoopExpr] = STATE(1230), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1230), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1230), + [337] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1466), + [sym_BinaryExpr] = STATE(1466), + [sym_UnaryExpr] = STATE(1466), + [sym__PrimaryExpr] = STATE(1466), + [sym_IfExpr] = STATE(1466), + [sym_Block] = STATE(1466), + [sym_LoopExpr] = STATE(1466), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1466), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1466), [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [sym_IfPrefix] = STATE(312), + [sym_WhilePrefix] = STATE(314), + [sym_ForPrefix] = STATE(318), + [sym_PrefixOp] = STATE(171), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(269), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(271), + [anon_sym_fn] = ACTIONS(273), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), + [anon_sym_nosuspend] = ACTIONS(275), + [anon_sym_break] = ACTIONS(277), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_resume] = ACTIONS(275), + [anon_sym_return] = ACTIONS(281), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [338] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1548), + [sym_BinaryExpr] = STATE(1548), + [sym_UnaryExpr] = STATE(1548), + [sym__PrimaryExpr] = STATE(1548), + [sym_IfExpr] = STATE(1548), + [sym_Block] = STATE(1548), + [sym_LoopExpr] = STATE(1548), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1548), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1548), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [339] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1242), + [sym_BinaryExpr] = STATE(1242), + [sym_UnaryExpr] = STATE(1242), + [sym__PrimaryExpr] = STATE(1242), + [sym_IfExpr] = STATE(1242), + [sym_Block] = STATE(1242), + [sym_LoopExpr] = STATE(1242), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1242), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1242), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), [anon_sym_false] = ACTIONS(193), [anon_sym_null] = ACTIONS(193), [anon_sym_anyframe] = ACTIONS(195), @@ -47321,82 +47046,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [343] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1214), - [sym_BinaryExpr] = STATE(1214), - [sym_UnaryExpr] = STATE(1214), - [sym__PrimaryExpr] = STATE(1214), - [sym_IfExpr] = STATE(1214), - [sym_Block] = STATE(1214), - [sym_LoopExpr] = STATE(1214), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1214), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1214), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [340] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1562), + [sym_BinaryExpr] = STATE(1562), + [sym_UnaryExpr] = STATE(1562), + [sym__PrimaryExpr] = STATE(1562), + [sym_IfExpr] = STATE(1562), + [sym_Block] = STATE(1562), + [sym_LoopExpr] = STATE(1562), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1562), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1562), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -47415,80 +47140,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [344] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1566), - [sym_BinaryExpr] = STATE(1566), - [sym_UnaryExpr] = STATE(1566), - [sym__PrimaryExpr] = STATE(1566), - [sym_IfExpr] = STATE(1566), - [sym_Block] = STATE(1566), - [sym_LoopExpr] = STATE(1566), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1566), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [341] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(903), + [sym_BinaryExpr] = STATE(903), + [sym_UnaryExpr] = STATE(903), + [sym__PrimaryExpr] = STATE(903), + [sym_IfExpr] = STATE(903), + [sym_Block] = STATE(903), + [sym_LoopExpr] = STATE(903), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(903), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1566), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(903), + [sym_BlockLabel] = STATE(1923), + [sym_IfPrefix] = STATE(271), + [sym_WhilePrefix] = STATE(272), + [sym_ForPrefix] = STATE(273), + [sym_PrefixOp] = STATE(236), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(37), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(41), + [anon_sym_fn] = ACTIONS(43), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), + [anon_sym_nosuspend] = ACTIONS(51), + [anon_sym_break] = ACTIONS(53), [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_resume] = ACTIONS(51), + [anon_sym_return] = ACTIONS(57), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47529,82 +47254,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [345] = { - [sym_FnProto] = STATE(921), - [sym__Expr] = STATE(1219), - [sym_BinaryExpr] = STATE(1219), - [sym_UnaryExpr] = STATE(1219), - [sym__PrimaryExpr] = STATE(1219), - [sym_IfExpr] = STATE(1219), - [sym_Block] = STATE(1219), - [sym_LoopExpr] = STATE(1219), - [sym_ForExpr] = STATE(1249), - [sym_WhileExpr] = STATE(1249), - [sym__CurlySuffixExpr] = STATE(1219), - [sym__TypeExpr] = STATE(1243), - [sym_ErrorUnionExpr] = STATE(1243), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_AsmExpr] = STATE(1219), - [sym_BlockLabel] = STATE(1907), - [sym_IfPrefix] = STATE(321), - [sym_WhilePrefix] = STATE(322), - [sym_ForPrefix] = STATE(323), - [sym_PrefixOp] = STATE(251), + [342] = { + [sym_FnProto] = STATE(941), + [sym__Expr] = STATE(1232), + [sym_BinaryExpr] = STATE(1232), + [sym_UnaryExpr] = STATE(1232), + [sym__PrimaryExpr] = STATE(1232), + [sym_IfExpr] = STATE(1232), + [sym_Block] = STATE(1232), + [sym_LoopExpr] = STATE(1232), + [sym_ForExpr] = STATE(1269), + [sym_WhileExpr] = STATE(1269), + [sym__CurlySuffixExpr] = STATE(1232), + [sym__TypeExpr] = STATE(1247), + [sym_ErrorUnionExpr] = STATE(1247), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_AsmExpr] = STATE(1232), + [sym_BlockLabel] = STATE(1915), + [sym_IfPrefix] = STATE(228), + [sym_WhilePrefix] = STATE(229), + [sym_ForPrefix] = STATE(233), + [sym_PrefixOp] = STATE(213), [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(786), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(788), - [anon_sym_fn] = ACTIONS(790), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(646), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(648), + [anon_sym_fn] = ACTIONS(650), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(135), - [anon_sym_break] = ACTIONS(137), - [anon_sym_continue] = ACTIONS(139), - [anon_sym_resume] = ACTIONS(135), - [anon_sym_return] = ACTIONS(141), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_asm] = ACTIONS(161), + [anon_sym_nosuspend] = ACTIONS(177), + [anon_sym_break] = ACTIONS(179), + [anon_sym_continue] = ACTIONS(181), + [anon_sym_resume] = ACTIONS(177), + [anon_sym_return] = ACTIONS(183), + [anon_sym_LBRACE] = ACTIONS(185), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_asm] = ACTIONS(203), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -47623,67 +47348,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [346] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1600), - [sym_BinaryExpr] = STATE(1600), - [sym_UnaryExpr] = STATE(1600), - [sym__PrimaryExpr] = STATE(1600), - [sym_IfExpr] = STATE(1600), - [sym_Block] = STATE(1600), - [sym_LoopExpr] = STATE(1600), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1600), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [343] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1571), + [sym_BinaryExpr] = STATE(1571), + [sym_UnaryExpr] = STATE(1571), + [sym__PrimaryExpr] = STATE(1571), + [sym_IfExpr] = STATE(1571), + [sym_Block] = STATE(1571), + [sym_LoopExpr] = STATE(1571), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1571), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1600), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1571), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -47696,7 +47421,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47737,57 +47462,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [347] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1570), - [sym_BinaryExpr] = STATE(1570), - [sym_UnaryExpr] = STATE(1570), - [sym__PrimaryExpr] = STATE(1570), - [sym_IfExpr] = STATE(1570), - [sym_Block] = STATE(1570), - [sym_LoopExpr] = STATE(1570), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1570), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [344] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1550), + [sym_BinaryExpr] = STATE(1550), + [sym_UnaryExpr] = STATE(1550), + [sym__PrimaryExpr] = STATE(1550), + [sym_IfExpr] = STATE(1550), + [sym_Block] = STATE(1550), + [sym_LoopExpr] = STATE(1550), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1550), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1570), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1550), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -47800,7 +47525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47841,70 +47566,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [348] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1569), - [sym_BinaryExpr] = STATE(1569), - [sym_UnaryExpr] = STATE(1569), - [sym__PrimaryExpr] = STATE(1569), - [sym_IfExpr] = STATE(1569), - [sym_Block] = STATE(1569), - [sym_LoopExpr] = STATE(1569), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1569), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [345] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1507), + [sym_BinaryExpr] = STATE(1507), + [sym_UnaryExpr] = STATE(1507), + [sym__PrimaryExpr] = STATE(1507), + [sym_IfExpr] = STATE(1507), + [sym_Block] = STATE(1507), + [sym_LoopExpr] = STATE(1507), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1507), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1569), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(113), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1507), + [sym_BlockLabel] = STATE(1918), + [sym_IfPrefix] = STATE(190), + [sym_WhilePrefix] = STATE(189), + [sym_ForPrefix] = STATE(188), + [sym_PrefixOp] = STATE(185), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(303), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(115), - [anon_sym_fn] = ACTIONS(117), + [anon_sym_inline] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(121), - [anon_sym_break] = ACTIONS(123), - [anon_sym_continue] = ACTIONS(55), - [anon_sym_resume] = ACTIONS(121), - [anon_sym_return] = ACTIONS(125), + [anon_sym_nosuspend] = ACTIONS(309), + [anon_sym_break] = ACTIONS(311), + [anon_sym_continue] = ACTIONS(864), + [anon_sym_resume] = ACTIONS(309), + [anon_sym_return] = ACTIONS(315), [anon_sym_LBRACE] = ACTIONS(59), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -47945,57 +47670,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [349] = { - [sym_FnProto] = STATE(719), - [sym__Expr] = STATE(1558), - [sym_BinaryExpr] = STATE(1558), - [sym_UnaryExpr] = STATE(1558), - [sym__PrimaryExpr] = STATE(1558), - [sym_IfExpr] = STATE(1558), - [sym_Block] = STATE(1558), - [sym_LoopExpr] = STATE(1558), - [sym_ForExpr] = STATE(1013), - [sym_WhileExpr] = STATE(1013), - [sym__CurlySuffixExpr] = STATE(1558), - [sym__TypeExpr] = STATE(942), - [sym_ErrorUnionExpr] = STATE(942), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [346] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1582), + [sym_BinaryExpr] = STATE(1582), + [sym_UnaryExpr] = STATE(1582), + [sym__PrimaryExpr] = STATE(1582), + [sym_IfExpr] = STATE(1582), + [sym_Block] = STATE(1582), + [sym_LoopExpr] = STATE(1582), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1582), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_AsmExpr] = STATE(1558), - [sym_BlockLabel] = STATE(1908), - [sym_IfPrefix] = STATE(224), - [sym_WhilePrefix] = STATE(221), - [sym_ForPrefix] = STATE(218), - [sym_PrefixOp] = STATE(217), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1582), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(113), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(115), @@ -48008,7 +47733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(125), [anon_sym_LBRACE] = ACTIONS(59), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -48049,82 +47774,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [350] = { - [sym_FnProto] = STATE(943), - [sym__Expr] = STATE(1231), - [sym_BinaryExpr] = STATE(1231), - [sym_UnaryExpr] = STATE(1231), - [sym__PrimaryExpr] = STATE(1231), - [sym_IfExpr] = STATE(1231), - [sym_Block] = STATE(1231), - [sym_LoopExpr] = STATE(1231), - [sym_ForExpr] = STATE(1268), - [sym_WhileExpr] = STATE(1268), - [sym__CurlySuffixExpr] = STATE(1231), - [sym__TypeExpr] = STATE(1245), - [sym_ErrorUnionExpr] = STATE(1245), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_AsmExpr] = STATE(1231), - [sym_BlockLabel] = STATE(1916), - [sym_IfPrefix] = STATE(254), - [sym_WhilePrefix] = STATE(256), - [sym_ForPrefix] = STATE(257), - [sym_PrefixOp] = STATE(157), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(698), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(702), + [347] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1563), + [sym_BinaryExpr] = STATE(1563), + [sym_UnaryExpr] = STATE(1563), + [sym__PrimaryExpr] = STATE(1563), + [sym_IfExpr] = STATE(1563), + [sym_Block] = STATE(1563), + [sym_LoopExpr] = STATE(1563), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1563), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1563), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(85), - [anon_sym_nosuspend] = ACTIONS(177), - [anon_sym_break] = ACTIONS(179), - [anon_sym_continue] = ACTIONS(181), - [anon_sym_resume] = ACTIONS(177), - [anon_sym_return] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(185), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_asm] = ACTIONS(203), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(79), [anon_sym_while] = ACTIONS(81), @@ -48143,309 +47868,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [351] = { - [ts_builtin_sym_end] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_test] = ACTIONS(544), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_export] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_noinline] = ACTIONS(544), - [anon_sym_threadlocal] = ACTIONS(544), - [anon_sym_usingnamespace] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(542), - [anon_sym_error] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), - [anon_sym_true] = ACTIONS(544), - [anon_sym_undefined] = ACTIONS(544), - [anon_sym_unreachable] = ACTIONS(544), - [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_LT_LT_PIPE] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(542), - [anon_sym_DASH_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_PIPE] = ACTIONS(542), - [anon_sym_DASH_PIPE] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(542), - [anon_sym_STAR_PIPE] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_doc_comment] = ACTIONS(542), - [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), + [348] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1605), + [sym_BinaryExpr] = STATE(1605), + [sym_UnaryExpr] = STATE(1605), + [sym__PrimaryExpr] = STATE(1605), + [sym_IfExpr] = STATE(1605), + [sym_Block] = STATE(1605), + [sym_LoopExpr] = STATE(1605), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1605), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1605), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [352] = { - [ts_builtin_sym_end] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_test] = ACTIONS(572), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_export] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_noinline] = ACTIONS(572), - [anon_sym_threadlocal] = ACTIONS(572), - [anon_sym_usingnamespace] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_var] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_else] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LT_LT_PIPE] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(570), - [anon_sym_DASH_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_PIPE] = ACTIONS(570), - [anon_sym_DASH_PIPE] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(570), - [anon_sym_STAR_PIPE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_doc_comment] = ACTIONS(570), - [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), + [349] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1556), + [sym_BinaryExpr] = STATE(1556), + [sym_UnaryExpr] = STATE(1556), + [sym__PrimaryExpr] = STATE(1556), + [sym_IfExpr] = STATE(1556), + [sym_Block] = STATE(1556), + [sym_LoopExpr] = STATE(1556), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1556), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1556), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [353] = { - [ts_builtin_sym_end] = ACTIONS(566), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_test] = ACTIONS(568), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_export] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_noinline] = ACTIONS(568), - [anon_sym_threadlocal] = ACTIONS(568), - [anon_sym_usingnamespace] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_var] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(566), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_LT_LT_PIPE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(566), - [anon_sym_DASH_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_PIPE] = ACTIONS(566), - [anon_sym_DASH_PIPE] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(566), - [anon_sym_STAR_PIPE] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_doc_comment] = ACTIONS(566), - [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), + [350] = { + [sym_FnProto] = STATE(716), + [sym__Expr] = STATE(1578), + [sym_BinaryExpr] = STATE(1578), + [sym_UnaryExpr] = STATE(1578), + [sym__PrimaryExpr] = STATE(1578), + [sym_IfExpr] = STATE(1578), + [sym_Block] = STATE(1578), + [sym_LoopExpr] = STATE(1578), + [sym_ForExpr] = STATE(988), + [sym_WhileExpr] = STATE(988), + [sym__CurlySuffixExpr] = STATE(1578), + [sym__TypeExpr] = STATE(943), + [sym_ErrorUnionExpr] = STATE(943), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_AsmExpr] = STATE(1578), + [sym_BlockLabel] = STATE(1919), + [sym_IfPrefix] = STATE(192), + [sym_WhilePrefix] = STATE(191), + [sym_ForPrefix] = STATE(177), + [sym_PrefixOp] = STATE(176), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(113), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(115), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_nosuspend] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(55), + [anon_sym_resume] = ACTIONS(121), + [anon_sym_return] = ACTIONS(125), + [anon_sym_LBRACE] = ACTIONS(59), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_asm] = ACTIONS(75), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_for] = ACTIONS(83), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_DASH_PERCENT] = ACTIONS(85), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_TILDE] = ACTIONS(85), + [anon_sym_try] = ACTIONS(45), + [anon_sym_await] = ACTIONS(45), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [354] = { + [351] = { [ts_builtin_sym_end] = ACTIONS(526), [anon_sym_COMMA] = ACTIONS(526), [anon_sym_pub] = ACTIONS(528), @@ -48537,392 +48286,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(528), [aux_sym_INTEGER_token4] = ACTIONS(528), [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), [aux_sym_IDENTIFIER_token1] = ACTIONS(528), [anon_sym_AT] = ACTIONS(526), }, - [355] = { - [ts_builtin_sym_end] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(540), - [anon_sym_test] = ACTIONS(540), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_noinline] = ACTIONS(540), - [anon_sym_threadlocal] = ACTIONS(540), - [anon_sym_usingnamespace] = ACTIONS(540), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_var] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_LT_LT_PIPE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(538), - [anon_sym_DASH_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_PIPE] = ACTIONS(538), - [anon_sym_DASH_PIPE] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(538), - [anon_sym_STAR_PIPE] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_doc_comment] = ACTIONS(538), + [352] = { + [ts_builtin_sym_end] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_test] = ACTIONS(560), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_export] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_noinline] = ACTIONS(560), + [anon_sym_threadlocal] = ACTIONS(560), + [anon_sym_usingnamespace] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_var] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(558), + [anon_sym_DASH_PERCENT] = ACTIONS(558), + [anon_sym_PLUS_PIPE] = ACTIONS(558), + [anon_sym_DASH_PIPE] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(558), + [anon_sym_STAR_PIPE] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_doc_comment] = ACTIONS(558), [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), }, - [356] = { - [ts_builtin_sym_end] = ACTIONS(570), - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_pub] = ACTIONS(572), - [anon_sym_test] = ACTIONS(572), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_export] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_noinline] = ACTIONS(572), - [anon_sym_threadlocal] = ACTIONS(572), - [anon_sym_usingnamespace] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_const] = ACTIONS(572), - [anon_sym_var] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(570), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LT_LT_PIPE] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(570), - [anon_sym_DASH_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_PIPE] = ACTIONS(570), - [anon_sym_DASH_PIPE] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(570), - [anon_sym_STAR_PIPE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_doc_comment] = ACTIONS(570), + [353] = { + [ts_builtin_sym_end] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_test] = ACTIONS(564), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_export] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_noinline] = ACTIONS(564), + [anon_sym_threadlocal] = ACTIONS(564), + [anon_sym_usingnamespace] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_var] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(562), + [anon_sym_DASH_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_PIPE] = ACTIONS(562), + [anon_sym_DASH_PIPE] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(562), + [anon_sym_STAR_PIPE] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_doc_comment] = ACTIONS(562), [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), }, - [357] = { - [ts_builtin_sym_end] = ACTIONS(566), - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_pub] = ACTIONS(568), - [anon_sym_test] = ACTIONS(568), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_export] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_noinline] = ACTIONS(568), - [anon_sym_threadlocal] = ACTIONS(568), - [anon_sym_usingnamespace] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_const] = ACTIONS(568), - [anon_sym_var] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(566), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_LT_LT_PIPE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(566), - [anon_sym_DASH_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_PIPE] = ACTIONS(566), - [anon_sym_DASH_PIPE] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(566), - [anon_sym_STAR_PIPE] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_doc_comment] = ACTIONS(566), + [354] = { + [ts_builtin_sym_end] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_pub] = ACTIONS(524), + [anon_sym_test] = ACTIONS(524), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_export] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_noinline] = ACTIONS(524), + [anon_sym_threadlocal] = ACTIONS(524), + [anon_sym_usingnamespace] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_const] = ACTIONS(524), + [anon_sym_var] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(522), + [anon_sym_DASH_PERCENT] = ACTIONS(522), + [anon_sym_PLUS_PIPE] = ACTIONS(522), + [anon_sym_DASH_PIPE] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(522), + [anon_sym_STAR_PIPE] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_doc_comment] = ACTIONS(522), [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), }, - [358] = { - [ts_builtin_sym_end] = ACTIONS(542), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_pub] = ACTIONS(544), - [anon_sym_test] = ACTIONS(544), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_export] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_noinline] = ACTIONS(544), - [anon_sym_threadlocal] = ACTIONS(544), - [anon_sym_usingnamespace] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_const] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(542), - [anon_sym_error] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), - [anon_sym_true] = ACTIONS(544), - [anon_sym_undefined] = ACTIONS(544), - [anon_sym_unreachable] = ACTIONS(544), - [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_LT_LT_PIPE] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(542), - [anon_sym_DASH_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_PIPE] = ACTIONS(542), - [anon_sym_DASH_PIPE] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(542), - [anon_sym_STAR_PIPE] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_doc_comment] = ACTIONS(542), + [355] = { + [ts_builtin_sym_end] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_test] = ACTIONS(532), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_export] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_noinline] = ACTIONS(532), + [anon_sym_threadlocal] = ACTIONS(532), + [anon_sym_usingnamespace] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_var] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(530), + [anon_sym_DASH_PERCENT] = ACTIONS(530), + [anon_sym_PLUS_PIPE] = ACTIONS(530), + [anon_sym_DASH_PIPE] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(530), + [anon_sym_STAR_PIPE] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_doc_comment] = ACTIONS(530), [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), }, - [359] = { + [356] = { [ts_builtin_sym_end] = ACTIONS(526), [anon_sym_COMMA] = ACTIONS(526), [anon_sym_pub] = ACTIONS(528), @@ -49013,106 +48765,565 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(528), [aux_sym_INTEGER_token4] = ACTIONS(528), [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), [aux_sym_IDENTIFIER_token1] = ACTIONS(528), [anon_sym_AT] = ACTIONS(526), }, + [357] = { + [ts_builtin_sym_end] = ACTIONS(558), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_pub] = ACTIONS(560), + [anon_sym_test] = ACTIONS(560), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_export] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_noinline] = ACTIONS(560), + [anon_sym_threadlocal] = ACTIONS(560), + [anon_sym_usingnamespace] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_const] = ACTIONS(560), + [anon_sym_var] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(558), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(558), + [anon_sym_DASH_PERCENT] = ACTIONS(558), + [anon_sym_PLUS_PIPE] = ACTIONS(558), + [anon_sym_DASH_PIPE] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(558), + [anon_sym_STAR_PIPE] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_doc_comment] = ACTIONS(558), + [sym_line_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), + }, + [358] = { + [ts_builtin_sym_end] = ACTIONS(562), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_pub] = ACTIONS(564), + [anon_sym_test] = ACTIONS(564), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_export] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_noinline] = ACTIONS(564), + [anon_sym_threadlocal] = ACTIONS(564), + [anon_sym_usingnamespace] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_const] = ACTIONS(564), + [anon_sym_var] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(562), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(562), + [anon_sym_DASH_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_PIPE] = ACTIONS(562), + [anon_sym_DASH_PIPE] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(562), + [anon_sym_STAR_PIPE] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_doc_comment] = ACTIONS(562), + [sym_line_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), + }, + [359] = { + [ts_builtin_sym_end] = ACTIONS(522), + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_pub] = ACTIONS(524), + [anon_sym_test] = ACTIONS(524), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_export] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_noinline] = ACTIONS(524), + [anon_sym_threadlocal] = ACTIONS(524), + [anon_sym_usingnamespace] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_const] = ACTIONS(524), + [anon_sym_var] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(522), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(522), + [anon_sym_DASH_PERCENT] = ACTIONS(522), + [anon_sym_PLUS_PIPE] = ACTIONS(522), + [anon_sym_DASH_PIPE] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(522), + [anon_sym_STAR_PIPE] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_doc_comment] = ACTIONS(522), + [sym_line_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + }, [360] = { - [ts_builtin_sym_end] = ACTIONS(538), - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_pub] = ACTIONS(540), - [anon_sym_test] = ACTIONS(540), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_export] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_noinline] = ACTIONS(540), - [anon_sym_threadlocal] = ACTIONS(540), - [anon_sym_usingnamespace] = ACTIONS(540), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_const] = ACTIONS(540), - [anon_sym_var] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(538), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_LT_LT_PIPE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(538), - [anon_sym_DASH_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_PIPE] = ACTIONS(538), - [anon_sym_DASH_PIPE] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(538), - [anon_sym_STAR_PIPE] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_doc_comment] = ACTIONS(538), + [ts_builtin_sym_end] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_pub] = ACTIONS(532), + [anon_sym_test] = ACTIONS(532), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_export] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_noinline] = ACTIONS(532), + [anon_sym_threadlocal] = ACTIONS(532), + [anon_sym_usingnamespace] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_const] = ACTIONS(532), + [anon_sym_var] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_RBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(530), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(530), + [anon_sym_DASH_PERCENT] = ACTIONS(530), + [anon_sym_PLUS_PIPE] = ACTIONS(530), + [anon_sym_DASH_PIPE] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(530), + [anon_sym_STAR_PIPE] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_doc_comment] = ACTIONS(530), [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), }, [361] = { + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_else] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(562), + [anon_sym_DASH_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_PIPE] = ACTIONS(562), + [anon_sym_DASH_PIPE] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(562), + [anon_sym_STAR_PIPE] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), + }, + [362] = { + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_else] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(522), + [anon_sym_DASH_PERCENT] = ACTIONS(522), + [anon_sym_PLUS_PIPE] = ACTIONS(522), + [anon_sym_DASH_PIPE] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(522), + [anon_sym_STAR_PIPE] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + }, + [363] = { [anon_sym_COMMA] = ACTIONS(526), [anon_sym_comptime] = ACTIONS(528), [anon_sym_extern] = ACTIONS(528), @@ -49195,359 +49406,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(528), [aux_sym_INTEGER_token4] = ACTIONS(528), [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), [aux_sym_IDENTIFIER_token1] = ACTIONS(528), [anon_sym_AT] = ACTIONS(526), }, - [362] = { - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_else] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_LT_LT_PIPE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(538), - [anon_sym_DASH_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_PIPE] = ACTIONS(538), - [anon_sym_DASH_PIPE] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(538), - [anon_sym_STAR_PIPE] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), - }, - [363] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_else] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LT_LT_PIPE] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(570), - [anon_sym_DASH_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_PIPE] = ACTIONS(570), - [anon_sym_DASH_PIPE] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(570), - [anon_sym_STAR_PIPE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), - }, [364] = { - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_else] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_LT_LT_PIPE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(566), - [anon_sym_DASH_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_PIPE] = ACTIONS(566), - [anon_sym_DASH_PIPE] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(566), - [anon_sym_STAR_PIPE] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_else] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_GT] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(558), + [anon_sym_DASH_PERCENT] = ACTIONS(558), + [anon_sym_PLUS_PIPE] = ACTIONS(558), + [anon_sym_DASH_PIPE] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(558), + [anon_sym_STAR_PIPE] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), }, [365] = { - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_else] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_error] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), - [anon_sym_true] = ACTIONS(544), - [anon_sym_undefined] = ACTIONS(544), - [anon_sym_unreachable] = ACTIONS(544), - [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_LT_LT_PIPE] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(542), - [anon_sym_DASH_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_PIPE] = ACTIONS(542), - [anon_sym_DASH_PIPE] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(542), - [anon_sym_STAR_PIPE] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_else] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(530), + [anon_sym_DASH_PERCENT] = ACTIONS(530), + [anon_sym_PLUS_PIPE] = ACTIONS(530), + [anon_sym_DASH_PIPE] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(530), + [anon_sym_STAR_PIPE] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), }, [366] = { + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_comptime] = ACTIONS(564), + [anon_sym_extern] = ACTIONS(564), + [anon_sym_inline] = ACTIONS(564), + [anon_sym_fn] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_nosuspend] = ACTIONS(564), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(564), + [anon_sym_break] = ACTIONS(564), + [anon_sym_continue] = ACTIONS(564), + [anon_sym_resume] = ACTIONS(564), + [anon_sym_return] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_async] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_error] = ACTIONS(564), + [anon_sym_false] = ACTIONS(564), + [anon_sym_null] = ACTIONS(564), + [anon_sym_anyframe] = ACTIONS(564), + [anon_sym_true] = ACTIONS(564), + [anon_sym_undefined] = ACTIONS(564), + [anon_sym_unreachable] = ACTIONS(564), + [sym_BuildinTypeExpr] = ACTIONS(564), + [anon_sym_packed] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_switch] = ACTIONS(564), + [anon_sym_asm] = ACTIONS(564), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(562), + [anon_sym_if] = ACTIONS(564), + [anon_sym_while] = ACTIONS(564), + [anon_sym_for] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(562), + [anon_sym_CARET] = ACTIONS(562), + [anon_sym_orelse] = ACTIONS(564), + [anon_sym_catch] = ACTIONS(564), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_LT_LT_PIPE] = ACTIONS(562), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(562), + [anon_sym_DASH_PERCENT] = ACTIONS(562), + [anon_sym_PLUS_PIPE] = ACTIONS(562), + [anon_sym_DASH_PIPE] = ACTIONS(562), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(562), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(562), + [anon_sym_STAR_PIPE] = ACTIONS(562), + [anon_sym_TILDE] = ACTIONS(562), + [anon_sym_try] = ACTIONS(564), + [anon_sym_await] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(562), + [anon_sym_struct] = ACTIONS(564), + [anon_sym_opaque] = ACTIONS(564), + [anon_sym_enum] = ACTIONS(564), + [anon_sym_union] = ACTIONS(564), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(562), + [aux_sym_FLOAT_token1] = ACTIONS(562), + [aux_sym_FLOAT_token2] = ACTIONS(562), + [aux_sym_FLOAT_token3] = ACTIONS(562), + [aux_sym_FLOAT_token4] = ACTIONS(562), + [aux_sym_INTEGER_token1] = ACTIONS(562), + [aux_sym_INTEGER_token2] = ACTIONS(562), + [aux_sym_INTEGER_token3] = ACTIONS(564), + [aux_sym_INTEGER_token4] = ACTIONS(564), + [anon_sym_DQUOTE] = ACTIONS(562), + [anon_sym_BSLASH_BSLASH] = ACTIONS(562), + [aux_sym_IDENTIFIER_token1] = ACTIONS(564), + [anon_sym_AT] = ACTIONS(562), + }, + [367] = { + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_comptime] = ACTIONS(524), + [anon_sym_extern] = ACTIONS(524), + [anon_sym_inline] = ACTIONS(524), + [anon_sym_fn] = ACTIONS(524), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_nosuspend] = ACTIONS(524), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(524), + [anon_sym_break] = ACTIONS(524), + [anon_sym_continue] = ACTIONS(524), + [anon_sym_resume] = ACTIONS(524), + [anon_sym_return] = ACTIONS(524), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_async] = ACTIONS(524), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_error] = ACTIONS(524), + [anon_sym_false] = ACTIONS(524), + [anon_sym_null] = ACTIONS(524), + [anon_sym_anyframe] = ACTIONS(524), + [anon_sym_true] = ACTIONS(524), + [anon_sym_undefined] = ACTIONS(524), + [anon_sym_unreachable] = ACTIONS(524), + [sym_BuildinTypeExpr] = ACTIONS(524), + [anon_sym_packed] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_switch] = ACTIONS(524), + [anon_sym_asm] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(522), + [anon_sym_if] = ACTIONS(524), + [anon_sym_while] = ACTIONS(524), + [anon_sym_for] = ACTIONS(524), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(522), + [anon_sym_CARET] = ACTIONS(522), + [anon_sym_orelse] = ACTIONS(524), + [anon_sym_catch] = ACTIONS(524), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(522), + [anon_sym_LT_LT_PIPE] = ACTIONS(522), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(522), + [anon_sym_DASH_PERCENT] = ACTIONS(522), + [anon_sym_PLUS_PIPE] = ACTIONS(522), + [anon_sym_DASH_PIPE] = ACTIONS(522), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(522), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(522), + [anon_sym_STAR_PIPE] = ACTIONS(522), + [anon_sym_TILDE] = ACTIONS(522), + [anon_sym_try] = ACTIONS(524), + [anon_sym_await] = ACTIONS(524), + [anon_sym_QMARK] = ACTIONS(522), + [anon_sym_struct] = ACTIONS(524), + [anon_sym_opaque] = ACTIONS(524), + [anon_sym_enum] = ACTIONS(524), + [anon_sym_union] = ACTIONS(524), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(522), + [aux_sym_FLOAT_token1] = ACTIONS(522), + [aux_sym_FLOAT_token2] = ACTIONS(522), + [aux_sym_FLOAT_token3] = ACTIONS(522), + [aux_sym_FLOAT_token4] = ACTIONS(522), + [aux_sym_INTEGER_token1] = ACTIONS(522), + [aux_sym_INTEGER_token2] = ACTIONS(522), + [aux_sym_INTEGER_token3] = ACTIONS(524), + [aux_sym_INTEGER_token4] = ACTIONS(524), + [anon_sym_DQUOTE] = ACTIONS(522), + [anon_sym_BSLASH_BSLASH] = ACTIONS(522), + [aux_sym_IDENTIFIER_token1] = ACTIONS(524), + [anon_sym_AT] = ACTIONS(522), + }, + [368] = { [anon_sym_COMMA] = ACTIONS(526), [anon_sym_comptime] = ACTIONS(528), [anon_sym_extern] = ACTIONS(528), @@ -49629,407 +49838,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(528), [aux_sym_INTEGER_token4] = ACTIONS(528), [anon_sym_DQUOTE] = ACTIONS(526), - [aux_sym_LINESTRING_token1] = ACTIONS(526), + [anon_sym_BSLASH_BSLASH] = ACTIONS(526), [aux_sym_IDENTIFIER_token1] = ACTIONS(528), [anon_sym_AT] = ACTIONS(526), }, - [367] = { - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_comptime] = ACTIONS(540), - [anon_sym_extern] = ACTIONS(540), - [anon_sym_inline] = ACTIONS(540), - [anon_sym_fn] = ACTIONS(540), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_nosuspend] = ACTIONS(540), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(540), - [anon_sym_break] = ACTIONS(540), - [anon_sym_continue] = ACTIONS(540), - [anon_sym_resume] = ACTIONS(540), - [anon_sym_return] = ACTIONS(540), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_async] = ACTIONS(540), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_error] = ACTIONS(540), - [anon_sym_false] = ACTIONS(540), - [anon_sym_null] = ACTIONS(540), - [anon_sym_anyframe] = ACTIONS(540), - [anon_sym_true] = ACTIONS(540), - [anon_sym_undefined] = ACTIONS(540), - [anon_sym_unreachable] = ACTIONS(540), - [sym_BuildinTypeExpr] = ACTIONS(540), - [anon_sym_packed] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_switch] = ACTIONS(540), - [anon_sym_asm] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(538), - [anon_sym_if] = ACTIONS(540), - [anon_sym_while] = ACTIONS(540), - [anon_sym_for] = ACTIONS(540), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(538), - [anon_sym_CARET] = ACTIONS(538), - [anon_sym_orelse] = ACTIONS(540), - [anon_sym_catch] = ACTIONS(540), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(538), - [anon_sym_LT_LT_PIPE] = ACTIONS(538), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(538), - [anon_sym_DASH_PERCENT] = ACTIONS(538), - [anon_sym_PLUS_PIPE] = ACTIONS(538), - [anon_sym_DASH_PIPE] = ACTIONS(538), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(538), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(538), - [anon_sym_STAR_PIPE] = ACTIONS(538), - [anon_sym_TILDE] = ACTIONS(538), - [anon_sym_try] = ACTIONS(540), - [anon_sym_await] = ACTIONS(540), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_struct] = ACTIONS(540), - [anon_sym_opaque] = ACTIONS(540), - [anon_sym_enum] = ACTIONS(540), - [anon_sym_union] = ACTIONS(540), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(538), - [aux_sym_FLOAT_token1] = ACTIONS(538), - [aux_sym_FLOAT_token2] = ACTIONS(538), - [aux_sym_FLOAT_token3] = ACTIONS(538), - [aux_sym_FLOAT_token4] = ACTIONS(538), - [aux_sym_INTEGER_token1] = ACTIONS(538), - [aux_sym_INTEGER_token2] = ACTIONS(538), - [aux_sym_INTEGER_token3] = ACTIONS(540), - [aux_sym_INTEGER_token4] = ACTIONS(540), - [anon_sym_DQUOTE] = ACTIONS(538), - [aux_sym_LINESTRING_token1] = ACTIONS(538), - [aux_sym_IDENTIFIER_token1] = ACTIONS(540), - [anon_sym_AT] = ACTIONS(538), - }, - [368] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_comptime] = ACTIONS(572), - [anon_sym_extern] = ACTIONS(572), - [anon_sym_inline] = ACTIONS(572), - [anon_sym_fn] = ACTIONS(572), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_nosuspend] = ACTIONS(572), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(572), - [anon_sym_break] = ACTIONS(572), - [anon_sym_continue] = ACTIONS(572), - [anon_sym_resume] = ACTIONS(572), - [anon_sym_return] = ACTIONS(572), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_async] = ACTIONS(572), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_error] = ACTIONS(572), - [anon_sym_false] = ACTIONS(572), - [anon_sym_null] = ACTIONS(572), - [anon_sym_anyframe] = ACTIONS(572), - [anon_sym_true] = ACTIONS(572), - [anon_sym_undefined] = ACTIONS(572), - [anon_sym_unreachable] = ACTIONS(572), - [sym_BuildinTypeExpr] = ACTIONS(572), - [anon_sym_packed] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_switch] = ACTIONS(572), - [anon_sym_asm] = ACTIONS(572), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(570), - [anon_sym_if] = ACTIONS(572), - [anon_sym_while] = ACTIONS(572), - [anon_sym_for] = ACTIONS(572), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(570), - [anon_sym_CARET] = ACTIONS(570), - [anon_sym_orelse] = ACTIONS(572), - [anon_sym_catch] = ACTIONS(572), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LT_LT_PIPE] = ACTIONS(570), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(570), - [anon_sym_DASH_PERCENT] = ACTIONS(570), - [anon_sym_PLUS_PIPE] = ACTIONS(570), - [anon_sym_DASH_PIPE] = ACTIONS(570), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(570), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(570), - [anon_sym_STAR_PIPE] = ACTIONS(570), - [anon_sym_TILDE] = ACTIONS(570), - [anon_sym_try] = ACTIONS(572), - [anon_sym_await] = ACTIONS(572), - [anon_sym_QMARK] = ACTIONS(570), - [anon_sym_struct] = ACTIONS(572), - [anon_sym_opaque] = ACTIONS(572), - [anon_sym_enum] = ACTIONS(572), - [anon_sym_union] = ACTIONS(572), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(570), - [aux_sym_FLOAT_token1] = ACTIONS(570), - [aux_sym_FLOAT_token2] = ACTIONS(570), - [aux_sym_FLOAT_token3] = ACTIONS(570), - [aux_sym_FLOAT_token4] = ACTIONS(570), - [aux_sym_INTEGER_token1] = ACTIONS(570), - [aux_sym_INTEGER_token2] = ACTIONS(570), - [aux_sym_INTEGER_token3] = ACTIONS(572), - [aux_sym_INTEGER_token4] = ACTIONS(572), - [anon_sym_DQUOTE] = ACTIONS(570), - [aux_sym_LINESTRING_token1] = ACTIONS(570), - [aux_sym_IDENTIFIER_token1] = ACTIONS(572), - [anon_sym_AT] = ACTIONS(570), - }, [369] = { - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_comptime] = ACTIONS(568), - [anon_sym_extern] = ACTIONS(568), - [anon_sym_inline] = ACTIONS(568), - [anon_sym_fn] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_nosuspend] = ACTIONS(568), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(568), - [anon_sym_break] = ACTIONS(568), - [anon_sym_continue] = ACTIONS(568), - [anon_sym_resume] = ACTIONS(568), - [anon_sym_return] = ACTIONS(568), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_error] = ACTIONS(568), - [anon_sym_false] = ACTIONS(568), - [anon_sym_null] = ACTIONS(568), - [anon_sym_anyframe] = ACTIONS(568), - [anon_sym_true] = ACTIONS(568), - [anon_sym_undefined] = ACTIONS(568), - [anon_sym_unreachable] = ACTIONS(568), - [sym_BuildinTypeExpr] = ACTIONS(568), - [anon_sym_packed] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_switch] = ACTIONS(568), - [anon_sym_asm] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_DOT_DOT_DOT] = ACTIONS(566), - [anon_sym_if] = ACTIONS(568), - [anon_sym_while] = ACTIONS(568), - [anon_sym_for] = ACTIONS(568), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(566), - [anon_sym_CARET] = ACTIONS(566), - [anon_sym_orelse] = ACTIONS(568), - [anon_sym_catch] = ACTIONS(568), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(566), - [anon_sym_LT_LT_PIPE] = ACTIONS(566), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(566), - [anon_sym_DASH_PERCENT] = ACTIONS(566), - [anon_sym_PLUS_PIPE] = ACTIONS(566), - [anon_sym_DASH_PIPE] = ACTIONS(566), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(566), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(566), - [anon_sym_STAR_PIPE] = ACTIONS(566), - [anon_sym_TILDE] = ACTIONS(566), - [anon_sym_try] = ACTIONS(568), - [anon_sym_await] = ACTIONS(568), - [anon_sym_QMARK] = ACTIONS(566), - [anon_sym_struct] = ACTIONS(568), - [anon_sym_opaque] = ACTIONS(568), - [anon_sym_enum] = ACTIONS(568), - [anon_sym_union] = ACTIONS(568), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(566), - [aux_sym_FLOAT_token1] = ACTIONS(566), - [aux_sym_FLOAT_token2] = ACTIONS(566), - [aux_sym_FLOAT_token3] = ACTIONS(566), - [aux_sym_FLOAT_token4] = ACTIONS(566), - [aux_sym_INTEGER_token1] = ACTIONS(566), - [aux_sym_INTEGER_token2] = ACTIONS(566), - [aux_sym_INTEGER_token3] = ACTIONS(568), - [aux_sym_INTEGER_token4] = ACTIONS(568), - [anon_sym_DQUOTE] = ACTIONS(566), - [aux_sym_LINESTRING_token1] = ACTIONS(566), - [aux_sym_IDENTIFIER_token1] = ACTIONS(568), - [anon_sym_AT] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_comptime] = ACTIONS(560), + [anon_sym_extern] = ACTIONS(560), + [anon_sym_inline] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(560), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_nosuspend] = ACTIONS(560), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(560), + [anon_sym_break] = ACTIONS(560), + [anon_sym_continue] = ACTIONS(560), + [anon_sym_resume] = ACTIONS(560), + [anon_sym_return] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_async] = ACTIONS(560), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_error] = ACTIONS(560), + [anon_sym_false] = ACTIONS(560), + [anon_sym_null] = ACTIONS(560), + [anon_sym_anyframe] = ACTIONS(560), + [anon_sym_true] = ACTIONS(560), + [anon_sym_undefined] = ACTIONS(560), + [anon_sym_unreachable] = ACTIONS(560), + [sym_BuildinTypeExpr] = ACTIONS(560), + [anon_sym_packed] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_switch] = ACTIONS(560), + [anon_sym_asm] = ACTIONS(560), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_DOT_DOT_DOT] = ACTIONS(558), + [anon_sym_if] = ACTIONS(560), + [anon_sym_while] = ACTIONS(560), + [anon_sym_for] = ACTIONS(560), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_GT] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(558), + [anon_sym_CARET] = ACTIONS(558), + [anon_sym_orelse] = ACTIONS(560), + [anon_sym_catch] = ACTIONS(560), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(558), + [anon_sym_LT_LT_PIPE] = ACTIONS(558), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(558), + [anon_sym_DASH_PERCENT] = ACTIONS(558), + [anon_sym_PLUS_PIPE] = ACTIONS(558), + [anon_sym_DASH_PIPE] = ACTIONS(558), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(558), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(558), + [anon_sym_STAR_PIPE] = ACTIONS(558), + [anon_sym_TILDE] = ACTIONS(558), + [anon_sym_try] = ACTIONS(560), + [anon_sym_await] = ACTIONS(560), + [anon_sym_QMARK] = ACTIONS(558), + [anon_sym_struct] = ACTIONS(560), + [anon_sym_opaque] = ACTIONS(560), + [anon_sym_enum] = ACTIONS(560), + [anon_sym_union] = ACTIONS(560), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(558), + [aux_sym_FLOAT_token1] = ACTIONS(558), + [aux_sym_FLOAT_token2] = ACTIONS(558), + [aux_sym_FLOAT_token3] = ACTIONS(558), + [aux_sym_FLOAT_token4] = ACTIONS(558), + [aux_sym_INTEGER_token1] = ACTIONS(558), + [aux_sym_INTEGER_token2] = ACTIONS(558), + [aux_sym_INTEGER_token3] = ACTIONS(560), + [aux_sym_INTEGER_token4] = ACTIONS(560), + [anon_sym_DQUOTE] = ACTIONS(558), + [anon_sym_BSLASH_BSLASH] = ACTIONS(558), + [aux_sym_IDENTIFIER_token1] = ACTIONS(560), + [anon_sym_AT] = ACTIONS(558), }, [370] = { - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_comptime] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_fn] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_nosuspend] = ACTIONS(544), - [anon_sym_or] = ACTIONS(544), - [anon_sym_and] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_resume] = ACTIONS(544), - [anon_sym_return] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_async] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_error] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [anon_sym_null] = ACTIONS(544), - [anon_sym_anyframe] = ACTIONS(544), - [anon_sym_true] = ACTIONS(544), - [anon_sym_undefined] = ACTIONS(544), - [anon_sym_unreachable] = ACTIONS(544), - [sym_BuildinTypeExpr] = ACTIONS(544), - [anon_sym_packed] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_asm] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_while] = ACTIONS(544), - [anon_sym_for] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(542), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_orelse] = ACTIONS(544), - [anon_sym_catch] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(544), - [anon_sym_GT_GT] = ACTIONS(542), - [anon_sym_LT_LT_PIPE] = ACTIONS(542), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_PLUS_PERCENT] = ACTIONS(542), - [anon_sym_DASH_PERCENT] = ACTIONS(542), - [anon_sym_PLUS_PIPE] = ACTIONS(542), - [anon_sym_DASH_PIPE] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR_STAR] = ACTIONS(542), - [anon_sym_STAR_PERCENT] = ACTIONS(542), - [anon_sym_STAR_PIPE] = ACTIONS(542), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_try] = ACTIONS(544), - [anon_sym_await] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(542), - [anon_sym_struct] = ACTIONS(544), - [anon_sym_opaque] = ACTIONS(544), - [anon_sym_enum] = ACTIONS(544), - [anon_sym_union] = ACTIONS(544), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(542), - [aux_sym_FLOAT_token1] = ACTIONS(542), - [aux_sym_FLOAT_token2] = ACTIONS(542), - [aux_sym_FLOAT_token3] = ACTIONS(542), - [aux_sym_FLOAT_token4] = ACTIONS(542), - [aux_sym_INTEGER_token1] = ACTIONS(542), - [aux_sym_INTEGER_token2] = ACTIONS(542), - [aux_sym_INTEGER_token3] = ACTIONS(544), - [aux_sym_INTEGER_token4] = ACTIONS(544), - [anon_sym_DQUOTE] = ACTIONS(542), - [aux_sym_LINESTRING_token1] = ACTIONS(542), - [aux_sym_IDENTIFIER_token1] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(542), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_comptime] = ACTIONS(532), + [anon_sym_extern] = ACTIONS(532), + [anon_sym_inline] = ACTIONS(532), + [anon_sym_fn] = ACTIONS(532), + [anon_sym_BANG] = ACTIONS(532), + [anon_sym_nosuspend] = ACTIONS(532), + [anon_sym_or] = ACTIONS(532), + [anon_sym_and] = ACTIONS(532), + [anon_sym_break] = ACTIONS(532), + [anon_sym_continue] = ACTIONS(532), + [anon_sym_resume] = ACTIONS(532), + [anon_sym_return] = ACTIONS(532), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_async] = ACTIONS(532), + [anon_sym_DOT] = ACTIONS(532), + [anon_sym_error] = ACTIONS(532), + [anon_sym_false] = ACTIONS(532), + [anon_sym_null] = ACTIONS(532), + [anon_sym_anyframe] = ACTIONS(532), + [anon_sym_true] = ACTIONS(532), + [anon_sym_undefined] = ACTIONS(532), + [anon_sym_unreachable] = ACTIONS(532), + [sym_BuildinTypeExpr] = ACTIONS(532), + [anon_sym_packed] = ACTIONS(532), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_switch] = ACTIONS(532), + [anon_sym_asm] = ACTIONS(532), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_DOT_DOT_DOT] = ACTIONS(530), + [anon_sym_if] = ACTIONS(532), + [anon_sym_while] = ACTIONS(532), + [anon_sym_for] = ACTIONS(532), + [anon_sym_PIPE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(532), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_EQ_EQ] = ACTIONS(530), + [anon_sym_BANG_EQ] = ACTIONS(530), + [anon_sym_LT] = ACTIONS(532), + [anon_sym_GT] = ACTIONS(532), + [anon_sym_LT_EQ] = ACTIONS(530), + [anon_sym_GT_EQ] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_CARET] = ACTIONS(530), + [anon_sym_orelse] = ACTIONS(532), + [anon_sym_catch] = ACTIONS(532), + [anon_sym_LT_LT] = ACTIONS(532), + [anon_sym_GT_GT] = ACTIONS(530), + [anon_sym_LT_LT_PIPE] = ACTIONS(530), + [anon_sym_PLUS] = ACTIONS(532), + [anon_sym_DASH] = ACTIONS(532), + [anon_sym_PLUS_PLUS] = ACTIONS(530), + [anon_sym_PLUS_PERCENT] = ACTIONS(530), + [anon_sym_DASH_PERCENT] = ACTIONS(530), + [anon_sym_PLUS_PIPE] = ACTIONS(530), + [anon_sym_DASH_PIPE] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_SLASH] = ACTIONS(532), + [anon_sym_PERCENT] = ACTIONS(530), + [anon_sym_STAR_STAR] = ACTIONS(530), + [anon_sym_STAR_PERCENT] = ACTIONS(530), + [anon_sym_STAR_PIPE] = ACTIONS(530), + [anon_sym_TILDE] = ACTIONS(530), + [anon_sym_try] = ACTIONS(532), + [anon_sym_await] = ACTIONS(532), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_struct] = ACTIONS(532), + [anon_sym_opaque] = ACTIONS(532), + [anon_sym_enum] = ACTIONS(532), + [anon_sym_union] = ACTIONS(532), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(530), + [aux_sym_FLOAT_token1] = ACTIONS(530), + [aux_sym_FLOAT_token2] = ACTIONS(530), + [aux_sym_FLOAT_token3] = ACTIONS(530), + [aux_sym_FLOAT_token4] = ACTIONS(530), + [aux_sym_INTEGER_token1] = ACTIONS(530), + [aux_sym_INTEGER_token2] = ACTIONS(530), + [aux_sym_INTEGER_token3] = ACTIONS(532), + [aux_sym_INTEGER_token4] = ACTIONS(532), + [anon_sym_DQUOTE] = ACTIONS(530), + [anon_sym_BSLASH_BSLASH] = ACTIONS(530), + [aux_sym_IDENTIFIER_token1] = ACTIONS(532), + [anon_sym_AT] = ACTIONS(530), }, [371] = { - [sym_FnProto] = STATE(720), + [sym_FnProto] = STATE(717), [sym__TypeExpr] = STATE(788), [sym_ErrorUnionExpr] = STATE(788), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_LinkSection] = STATE(438), - [sym_CallConv] = STATE(526), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(412), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_LinkSection] = STATE(434), + [sym_CallConv] = STATE(527), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(416), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(870), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50058,48 +50095,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [372] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1803), - [sym_ErrorUnionExpr] = STATE(1803), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_LinkSection] = STATE(458), - [sym_CallConv] = STATE(503), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_ByteAlign] = STATE(413), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1695), + [sym_ErrorUnionExpr] = STATE(1695), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_LinkSection] = STATE(426), + [sym_CallConv] = STATE(540), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_ByteAlign] = STATE(409), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), @@ -50143,63 +50180,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, [373] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(793), - [sym_ErrorUnionExpr] = STATE(793), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1711), + [sym_ErrorUnionExpr] = STATE(1711), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_LinkSection] = STATE(442), + [sym_CallConv] = STATE(520), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_ByteAlign] = STATE(412), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(924), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_align] = ACTIONS(882), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, + [374] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(788), + [sym_ErrorUnionExpr] = STATE(788), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(423), - [sym_CallConv] = STATE(539), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(416), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(438), + [sym_CallConv] = STATE(522), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(399), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(928), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(930), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50228,63 +50350,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [374] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(788), - [sym_ErrorUnionExpr] = STATE(788), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [375] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(834), + [sym_ErrorUnionExpr] = STATE(834), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_LinkSection] = STATE(422), - [sym_CallConv] = STATE(545), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(410), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(423), + [sym_CallConv] = STATE(539), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(418), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(932), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50313,63 +50435,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [375] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(793), - [sym_ErrorUnionExpr] = STATE(793), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [376] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(834), + [sym_ErrorUnionExpr] = STATE(834), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_LinkSection] = STATE(424), - [sym_CallConv] = STATE(502), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(411), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_LinkSection] = STATE(432), + [sym_CallConv] = STATE(544), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(415), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(936), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(938), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50398,63 +50520,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [376] = { - [sym_FnProto] = STATE(720), + [377] = { + [sym_FnProto] = STATE(717), [sym__TypeExpr] = STATE(788), [sym_ErrorUnionExpr] = STATE(788), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_LinkSection] = STATE(435), - [sym_CallConv] = STATE(528), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(405), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_LinkSection] = STATE(419), + [sym_CallConv] = STATE(529), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(404), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50483,151 +50605,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [377] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1416), - [sym_ErrorUnionExpr] = STATE(1416), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_LinkSection] = STATE(464), - [sym_CallConv] = STATE(493), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_ByteAlign] = STATE(401), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(948), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [378] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamDecl] = STATE(2235), + [sym_ParamType] = STATE(2284), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1926), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(946), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(63), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), + [anon_sym_noalias] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(954), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_align] = ACTIONS(882), [anon_sym_struct] = ACTIONS(89), [anon_sym_opaque] = ACTIONS(89), [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [sym_doc_comment] = ACTIONS(956), + [sym_line_comment] = ACTIONS(3), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [378] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1698), - [sym_ErrorUnionExpr] = STATE(1698), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_LinkSection] = STATE(434), - [sym_CallConv] = STATE(524), + [379] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(834), + [sym_ErrorUnionExpr] = STATE(834), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_LinkSection] = STATE(447), + [sym_CallConv] = STATE(518), [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_ByteAlign] = STATE(414), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(413), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), [anon_sym_BANG] = ACTIONS(958), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -50643,73 +50765,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [379] = { - [sym_FnProto] = STATE(720), + [380] = { + [sym_FnProto] = STATE(717), [sym__TypeExpr] = STATE(788), [sym_ErrorUnionExpr] = STATE(788), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(439), - [sym_CallConv] = STATE(521), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_LinkSection] = STATE(429), + [sym_CallConv] = STATE(531), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(397), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(410), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(990), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(960), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50738,63 +50860,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [380] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1119), - [sym_ErrorUnionExpr] = STATE(1119), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_LinkSection] = STATE(429), - [sym_CallConv] = STATE(532), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_ByteAlign] = STATE(417), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [381] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1129), + [sym_ErrorUnionExpr] = STATE(1129), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_LinkSection] = STATE(437), + [sym_CallConv] = STATE(521), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_ByteAlign] = STATE(405), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -50823,63 +50945,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [381] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(793), - [sym_ErrorUnionExpr] = STATE(793), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [382] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(788), + [sym_ErrorUnionExpr] = STATE(788), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_LinkSection] = STATE(447), - [sym_CallConv] = STATE(517), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(409), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(440), + [sym_CallConv] = STATE(524), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(414), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(968), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -50908,55 +51030,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [382] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(793), - [sym_ErrorUnionExpr] = STATE(793), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [383] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1423), + [sym_ErrorUnionExpr] = STATE(1423), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_LinkSection] = STATE(422), + [sym_CallConv] = STATE(500), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_ByteAlign] = STATE(398), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_align] = ACTIONS(882), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [384] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1103), + [sym_ErrorUnionExpr] = STATE(1103), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_LinkSection] = STATE(464), + [sym_CallConv] = STATE(493), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_ByteAlign] = STATE(407), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(980), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_align] = ACTIONS(882), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [385] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(443), - [sym_CallConv] = STATE(519), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(399), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamDecl] = STATE(2171), + [sym_ParamType] = STATE(2284), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1926), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(946), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1000), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(63), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -50967,22 +51258,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(982), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), + [anon_sym_noalias] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(954), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_align] = ACTIONS(882), [anon_sym_struct] = ACTIONS(89), [anon_sym_opaque] = ACTIONS(89), [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), + [sym_doc_comment] = ACTIONS(956), + [sym_line_comment] = ACTIONS(3), [anon_sym_SQUOTE] = ACTIONS(97), [aux_sym_FLOAT_token1] = ACTIONS(99), [aux_sym_FLOAT_token2] = ACTIONS(99), @@ -50993,233 +51285,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [383] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(788), - [sym_ErrorUnionExpr] = STATE(788), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(444), - [sym_CallConv] = STATE(520), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(402), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1002), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_align] = ACTIONS(882), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [384] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamDecl] = STATE(2306), - [sym_ParamType] = STATE(2279), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1912), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(63), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_noalias] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_doc_comment] = ACTIONS(1014), - [sym_line_comment] = ACTIONS(3), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [385] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1202), - [sym_ErrorUnionExpr] = STATE(1202), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_LinkSection] = STATE(465), - [sym_CallConv] = STATE(490), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), + [386] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1204), + [sym_ErrorUnionExpr] = STATE(1204), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_LinkSection] = STATE(451), + [sym_CallConv] = STATE(487), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), [sym_ByteAlign] = STATE(406), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -51248,66 +51370,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [386] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1036), - [sym_ErrorUnionExpr] = STATE(1036), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), + [387] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1823), + [sym_ErrorUnionExpr] = STATE(1823), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), [sym_LinkSection] = STATE(463), - [sym_CallConv] = STATE(496), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), + [sym_CallConv] = STATE(491), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), [sym_ByteAlign] = STATE(400), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1022), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(994), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -51323,73 +51445,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [387] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(793), - [sym_ErrorUnionExpr] = STATE(793), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [388] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(834), + [sym_ErrorUnionExpr] = STATE(834), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), [sym_LinkSection] = STATE(428), - [sym_CallConv] = STATE(538), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_ByteAlign] = STATE(418), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_CallConv] = STATE(536), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(411), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1024), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1026), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -51418,52 +51540,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [388] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [389] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamDecl] = STATE(2161), - [sym_ParamType] = STATE(2279), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1912), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(1004), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamDecl] = STATE(2235), + [sym_ParamType] = STATE(2284), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1926), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(946), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), [anon_sym_DOT] = ACTIONS(63), [anon_sym_error] = ACTIONS(65), @@ -51476,11 +51598,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(1028), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_noalias] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), + [anon_sym_noalias] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(954), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -51491,7 +51613,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_opaque] = ACTIONS(89), [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), - [sym_doc_comment] = ACTIONS(1014), + [sym_doc_comment] = ACTIONS(956), [sym_line_comment] = ACTIONS(3), [anon_sym_SQUOTE] = ACTIONS(97), [aux_sym_FLOAT_token1] = ACTIONS(99), @@ -51503,66 +51625,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [389] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1769), - [sym_ErrorUnionExpr] = STATE(1769), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_LinkSection] = STATE(460), - [sym_CallConv] = STATE(491), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_ByteAlign] = STATE(398), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1028), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [390] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1423), + [sym_ErrorUnionExpr] = STATE(1423), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_LinkSection] = STATE(455), + [sym_CallConv] = STATE(506), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_ByteAlign] = STATE(403), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1034), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -51578,64 +51700,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [390] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [391] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(834), + [sym_ErrorUnionExpr] = STATE(834), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamDecl] = STATE(2306), - [sym_ParamType] = STATE(2279), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1912), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(1004), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(444), + [sym_CallConv] = STATE(519), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_ByteAlign] = STATE(397), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), + [anon_sym_BANG] = ACTIONS(1036), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(63), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -51646,23 +51769,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_RPAREN] = ACTIONS(1030), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_noalias] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_align] = ACTIONS(882), [anon_sym_struct] = ACTIONS(89), [anon_sym_opaque] = ACTIONS(89), [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), - [sym_doc_comment] = ACTIONS(1014), - [sym_line_comment] = ACTIONS(3), + [sym_line_comment] = ACTIONS(95), [anon_sym_SQUOTE] = ACTIONS(97), [aux_sym_FLOAT_token1] = ACTIONS(99), [aux_sym_FLOAT_token2] = ACTIONS(99), @@ -51673,233 +51795,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [391] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1416), - [sym_ErrorUnionExpr] = STATE(1416), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_LinkSection] = STATE(454), - [sym_CallConv] = STATE(506), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_ByteAlign] = STATE(404), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1036), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_align] = ACTIONS(882), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, [392] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1699), - [sym_ErrorUnionExpr] = STATE(1699), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_LinkSection] = STATE(427), - [sym_CallConv] = STATE(540), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_ByteAlign] = STATE(415), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_align] = ACTIONS(882), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, - [393] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1376), - [sym_ErrorUnionExpr] = STATE(1376), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1383), + [sym_ErrorUnionExpr] = STATE(1383), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_LinkSection] = STATE(456), - [sym_CallConv] = STATE(505), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_LinkSection] = STATE(454), + [sym_CallConv] = STATE(515), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_ByteAlign] = STATE(407), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_ByteAlign] = STATE(402), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1038), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -51928,63 +51880,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [394] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1083), - [sym_ErrorUnionExpr] = STATE(1083), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_LinkSection] = STATE(441), + [393] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1087), + [sym_ErrorUnionExpr] = STATE(1087), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_LinkSection] = STATE(427), [sym_CallConv] = STATE(511), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), [sym_ByteAlign] = STATE(408), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1042), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1040), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -52013,63 +51965,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [394] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1809), + [sym_ErrorUnionExpr] = STATE(1809), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_LinkSection] = STATE(456), + [sym_CallConv] = STATE(504), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_ByteAlign] = STATE(417), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1042), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_align] = ACTIONS(882), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [395] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1376), - [sym_ErrorUnionExpr] = STATE(1376), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1383), + [sym_ErrorUnionExpr] = STATE(1383), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_LinkSection] = STATE(462), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_LinkSection] = STATE(465), [sym_CallConv] = STATE(494), - [sym_IfPrefix] = STATE(612), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_ByteAlign] = STATE(403), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_ByteAlign] = STATE(401), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(808), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -52098,52 +52135,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [396] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamDecl] = STATE(2306), - [sym_ParamType] = STATE(2279), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1912), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(1004), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamDecl] = STATE(2235), + [sym_ParamType] = STATE(2284), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1926), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(946), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), [anon_sym_DOT] = ACTIONS(63), [anon_sym_error] = ACTIONS(65), @@ -52158,8 +52195,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_noalias] = ACTIONS(1010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1012), + [anon_sym_noalias] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(954), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -52170,7 +52207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_opaque] = ACTIONS(89), [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), - [sym_doc_comment] = ACTIONS(1014), + [sym_doc_comment] = ACTIONS(956), [sym_line_comment] = ACTIONS(3), [anon_sym_SQUOTE] = ACTIONS(97), [aux_sym_FLOAT_token1] = ACTIONS(99), @@ -52182,62 +52219,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [397] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(455), - [sym_CallConv] = STATE(504), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(443), + [sym_CallConv] = STATE(517), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -52265,65 +52302,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [398] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1801), - [sym_ErrorUnionExpr] = STATE(1801), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_LinkSection] = STATE(461), - [sym_CallConv] = STATE(500), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_LinkSection] = STATE(441), + [sym_CallConv] = STATE(509), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -52338,72 +52375,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [399] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(420), - [sym_CallConv] = STATE(478), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(453), + [sym_CallConv] = STATE(505), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_BANG] = ACTIONS(1050), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -52431,65 +52468,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [400] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1082), - [sym_ErrorUnionExpr] = STATE(1082), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_LinkSection] = STATE(446), - [sym_CallConv] = STATE(484), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1808), + [sym_ErrorUnionExpr] = STATE(1808), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_LinkSection] = STATE(462), + [sym_CallConv] = STATE(502), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -52504,72 +52541,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [401] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_LinkSection] = STATE(436), - [sym_CallConv] = STATE(523), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_LinkSection] = STATE(460), + [sym_CallConv] = STATE(501), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -52597,145 +52634,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [402] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(433), - [sym_CallConv] = STATE(531), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [403] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_LinkSection] = STATE(457), - [sym_CallConv] = STATE(501), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_LinkSection] = STATE(424), + [sym_CallConv] = STATE(541), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -52763,62 +52717,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [404] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [403] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_LinkSection] = STATE(450), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_LinkSection] = STATE(420), [sym_CallConv] = STATE(479), - [sym_IfPrefix] = STATE(612), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -52846,62 +52800,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [405] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [404] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_LinkSection] = STATE(432), - [sym_CallConv] = STATE(480), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_LinkSection] = STATE(449), + [sym_CallConv] = STATE(486), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -52929,62 +52883,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [406] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1116), - [sym_ErrorUnionExpr] = STATE(1116), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_LinkSection] = STATE(449), - [sym_CallConv] = STATE(487), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [405] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1195), + [sym_ErrorUnionExpr] = STATE(1195), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_LinkSection] = STATE(466), + [sym_CallConv] = STATE(496), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -53012,65 +52966,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [407] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_LinkSection] = STATE(425), - [sym_CallConv] = STATE(541), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [406] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1191), + [sym_ErrorUnionExpr] = STATE(1191), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_LinkSection] = STATE(461), + [sym_CallConv] = STATE(492), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -53085,72 +53039,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [408] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1106), - [sym_ErrorUnionExpr] = STATE(1106), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_LinkSection] = STATE(448), - [sym_CallConv] = STATE(482), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [407] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1088), + [sym_ErrorUnionExpr] = STATE(1088), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_LinkSection] = STATE(446), + [sym_CallConv] = STATE(488), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -53178,65 +53132,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [409] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_LinkSection] = STATE(440), - [sym_CallConv] = STATE(522), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), + [408] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1075), + [sym_ErrorUnionExpr] = STATE(1075), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_LinkSection] = STATE(430), + [sym_CallConv] = STATE(482), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -53251,75 +53205,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [410] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_LinkSection] = STATE(426), - [sym_CallConv] = STATE(535), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [409] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1710), + [sym_ErrorUnionExpr] = STATE(1710), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_LinkSection] = STATE(435), + [sym_CallConv] = STATE(533), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -53334,72 +53288,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [411] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [410] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_LinkSection] = STATE(430), - [sym_CallConv] = STATE(530), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_LinkSection] = STATE(425), + [sym_CallConv] = STATE(542), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -53427,62 +53381,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [412] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [411] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_LinkSection] = STATE(421), - [sym_CallConv] = STATE(483), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_LinkSection] = STATE(458), + [sym_CallConv] = STATE(538), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -53510,52 +53464,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [413] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1814), - [sym_ErrorUnionExpr] = STATE(1814), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_LinkSection] = STATE(442), - [sym_CallConv] = STATE(518), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [412] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1729), + [sym_ErrorUnionExpr] = STATE(1729), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_LinkSection] = STATE(452), + [sym_CallConv] = STATE(512), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), @@ -53593,65 +53547,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [414] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1717), - [sym_ErrorUnionExpr] = STATE(1717), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_LinkSection] = STATE(453), - [sym_CallConv] = STATE(512), + [413] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_LinkSection] = STATE(436), + [sym_CallConv] = STATE(525), [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -53666,75 +53620,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [415] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1697), - [sym_ErrorUnionExpr] = STATE(1697), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), + [414] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), [sym_LinkSection] = STATE(431), - [sym_CallConv] = STATE(534), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_CallConv] = STATE(530), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), @@ -53749,72 +53703,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [416] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [415] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_LinkSection] = STATE(437), - [sym_CallConv] = STATE(525), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_LinkSection] = STATE(421), + [sym_CallConv] = STATE(535), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -53842,145 +53796,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [417] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1193), - [sym_ErrorUnionExpr] = STATE(1193), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_LinkSection] = STATE(452), - [sym_CallConv] = STATE(510), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_linksection] = ACTIONS(872), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [418] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [416] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_LinkSection] = STATE(466), - [sym_CallConv] = STATE(543), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_LinkSection] = STATE(450), + [sym_CallConv] = STATE(483), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54008,66 +53879,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [419] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), + [417] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1782), + [sym_ErrorUnionExpr] = STATE(1782), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2308), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_LinkSection] = STATE(439), + [sym_CallConv] = STATE(523), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), + [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -54079,75 +53952,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [420] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [418] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(537), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_LinkSection] = STATE(433), + [sym_CallConv] = STATE(526), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1092), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_linksection] = ACTIONS(872), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -54170,61 +54045,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [421] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [419] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), [sym_CallConv] = STATE(486), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54251,64 +54126,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [422] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_CallConv] = STATE(535), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [420] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1426), + [sym_ErrorUnionExpr] = STATE(1426), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_CallConv] = STATE(514), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -54322,71 +54197,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [423] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [421] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(525), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_CallConv] = STATE(528), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54413,61 +54288,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [424] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [422] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_CallConv] = STATE(509), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [423] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_CallConv] = STATE(530), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(526), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54494,61 +54450,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [425] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1434), - [sym_ErrorUnionExpr] = STATE(1434), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [424] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1441), + [sym_ErrorUnionExpr] = STATE(1441), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_CallConv] = STATE(497), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_CallConv] = STATE(490), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -54575,61 +54531,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [426] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [425] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_CallConv] = STATE(529), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_CallConv] = STATE(534), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54656,64 +54612,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, + [426] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1710), + [sym_ErrorUnionExpr] = STATE(1710), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_CallConv] = STATE(533), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, [427] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1697), - [sym_ErrorUnionExpr] = STATE(1697), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_CallConv] = STATE(534), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1075), + [sym_ErrorUnionExpr] = STATE(1075), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_CallConv] = STATE(482), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -54727,71 +54764,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [428] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_CallConv] = STATE(543), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_CallConv] = STATE(538), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54818,142 +54855,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [429] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1193), - [sym_ErrorUnionExpr] = STATE(1193), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_CallConv] = STATE(510), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [430] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_CallConv] = STATE(533), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_CallConv] = STATE(542), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -54980,64 +54936,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [431] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1715), - [sym_ErrorUnionExpr] = STATE(1715), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_CallConv] = STATE(514), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [430] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1061), + [sym_ErrorUnionExpr] = STATE(1061), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_CallConv] = STATE(484), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -55051,71 +55007,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [432] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [431] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_CallConv] = STATE(515), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(497), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55142,61 +55098,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [433] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [432] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(495), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_CallConv] = STATE(535), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55223,64 +55179,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [434] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1717), - [sym_ErrorUnionExpr] = STATE(1717), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_CallConv] = STATE(512), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), + [433] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(507), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -55294,71 +55250,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [435] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [434] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_CallConv] = STATE(480), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_CallConv] = STATE(483), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55385,64 +55341,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [436] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1427), - [sym_ErrorUnionExpr] = STATE(1427), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_CallConv] = STATE(536), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [435] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1727), + [sym_ErrorUnionExpr] = STATE(1727), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_CallConv] = STATE(478), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -55456,71 +55412,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [437] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [436] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(508), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_CallConv] = STATE(543), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55547,61 +55503,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, + [437] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1195), + [sym_ErrorUnionExpr] = STATE(1195), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_CallConv] = STATE(496), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, [438] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_CallConv] = STATE(483), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(505), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55628,64 +55665,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [439] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1822), + [sym_ErrorUnionExpr] = STATE(1822), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(504), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_CallConv] = STATE(503), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -55699,71 +55736,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [440] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_CallConv] = STATE(542), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(530), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1080), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -55790,64 +55827,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [441] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1106), - [sym_ErrorUnionExpr] = STATE(1106), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_CallConv] = STATE(482), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1426), + [sym_ErrorUnionExpr] = STATE(1426), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_CallConv] = STATE(532), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -55861,61 +55898,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [442] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1827), - [sym_ErrorUnionExpr] = STATE(1827), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_CallConv] = STATE(544), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1729), + [sym_ErrorUnionExpr] = STATE(1729), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_CallConv] = STATE(512), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1114), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), @@ -55952,53 +55989,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, [443] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(478), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(537), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1112), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -56033,53 +56070,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [444] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(531), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(517), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_BANG] = ACTIONS(1046), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -56114,53 +56151,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [445] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2251), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1920), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(1116), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2303), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1914), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(1114), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -56173,7 +56210,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_noalias] = ACTIONS(1118), + [anon_sym_noalias] = ACTIONS(1116), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -56195,61 +56232,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [446] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1099), - [sym_ErrorUnionExpr] = STATE(1099), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1077), + [sym_ErrorUnionExpr] = STATE(1077), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), [sym_CallConv] = STATE(481), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -56276,61 +56313,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [447] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_CallConv] = STATE(522), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_CallConv] = STATE(525), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -56357,66 +56394,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [448] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1051), - [sym_ErrorUnionExpr] = STATE(1051), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_CallConv] = STATE(485), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2264), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -56428,155 +56465,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [449] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1137), - [sym_ErrorUnionExpr] = STATE(1137), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_CallConv] = STATE(492), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [450] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1427), - [sym_ErrorUnionExpr] = STATE(1427), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), [sym_CallConv] = STATE(513), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -56590,76 +56546,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [451] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [450] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2223), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_CallConv] = STATE(485), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -56681,61 +56637,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [452] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1168), - [sym_ErrorUnionExpr] = STATE(1168), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_CallConv] = STATE(489), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [451] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1191), + [sym_ErrorUnionExpr] = STATE(1191), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_CallConv] = STATE(492), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -56762,145 +56718,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [453] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1741), - [sym_ErrorUnionExpr] = STATE(1741), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_CallConv] = STATE(507), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_callconv] = ACTIONS(874), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [454] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), + [452] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1743), + [sym_ErrorUnionExpr] = STATE(1743), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), [sym_BlockLabel] = STATE(1931), - [sym_CallConv] = STATE(479), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), + [sym_CallConv] = STATE(508), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -56914,71 +56789,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [455] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [453] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_CallConv] = STATE(488), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_CallConv] = STATE(489), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -57005,61 +56880,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [456] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [454] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_CallConv] = STATE(541), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -57086,61 +56961,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [457] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1434), - [sym_ErrorUnionExpr] = STATE(1434), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [455] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_CallConv] = STATE(509), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_CallConv] = STATE(479), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -57167,64 +57042,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [458] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1814), - [sym_ErrorUnionExpr] = STATE(1814), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [456] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1782), + [sym_ErrorUnionExpr] = STATE(1782), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_CallConv] = STATE(518), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1078), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_CallConv] = STATE(523), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57238,64 +57113,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [459] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [457] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2283), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2237), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1090), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(1120), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -57329,64 +57204,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [460] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1801), - [sym_ErrorUnionExpr] = STATE(1801), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_CallConv] = STATE(500), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [458] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_CallConv] = STATE(495), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57400,76 +57275,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [461] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1767), - [sym_ErrorUnionExpr] = STATE(1767), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_CallConv] = STATE(516), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [459] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2282), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -57481,71 +57356,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [462] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [460] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1441), + [sym_ErrorUnionExpr] = STATE(1441), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_CallConv] = STATE(501), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_CallConv] = STATE(510), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -57572,64 +57447,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [463] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1082), - [sym_ErrorUnionExpr] = STATE(1082), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_CallConv] = STATE(484), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [461] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1148), + [sym_ErrorUnionExpr] = STATE(1148), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_CallConv] = STATE(499), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57643,74 +57518,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [464] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_CallConv] = STATE(523), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [462] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1831), + [sym_ErrorUnionExpr] = STATE(1831), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_CallConv] = STATE(516), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57724,74 +57599,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [465] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1116), - [sym_ErrorUnionExpr] = STATE(1116), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_CallConv] = STATE(487), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [463] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1808), + [sym_ErrorUnionExpr] = STATE(1808), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_CallConv] = STATE(502), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57805,74 +57680,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [466] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_CallConv] = STATE(498), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [464] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1088), + [sym_ErrorUnionExpr] = STATE(1088), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_CallConv] = STATE(488), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), @@ -57886,75 +57761,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [467] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(1937), - [sym_ErrorUnionExpr] = STATE(1937), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2290), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1914), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [465] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_CallConv] = STATE(501), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -57966,78 +57842,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [468] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1771), - [sym_ErrorUnionExpr] = STATE(1771), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_Payload] = STATE(642), + [466] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1193), + [sym_ErrorUnionExpr] = STATE(1193), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_CallConv] = STATE(480), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_callconv] = ACTIONS(874), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(1140), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58046,74 +57923,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [469] = { - [sym_FnProto] = STATE(1633), - [sym__TypeExpr] = STATE(1864), - [sym_ErrorUnionExpr] = STATE(1864), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), + [467] = { + [sym_FnProto] = STATE(1628), + [sym__TypeExpr] = STATE(1868), + [sym_ErrorUnionExpr] = STATE(1868), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(702), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(702), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_anytype] = ACTIONS(1142), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(696), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(696), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_anytype] = ACTIONS(1140), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -58126,78 +58003,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [470] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1429), - [sym_ErrorUnionExpr] = STATE(1429), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_Payload] = STATE(662), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [468] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1810), + [sym_ErrorUnionExpr] = STATE(1810), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_Payload] = STATE(589), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1146), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58206,71 +58083,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [471] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [469] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(815), + [sym_ErrorUnionExpr] = STATE(815), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2290), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1917), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_Payload] = STATE(650), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -58278,6 +58154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(1146), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58296,148 +58173,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [472] = { - [sym_FnProto] = STATE(1633), - [sym__TypeExpr] = STATE(1863), - [sym_ErrorUnionExpr] = STATE(1863), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(702), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(702), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_anytype] = ACTIONS(1148), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), - }, - [473] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(818), - [sym_ErrorUnionExpr] = STATE(818), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_Payload] = STATE(596), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [470] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1436), + [sym_ErrorUnionExpr] = STATE(1436), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_Payload] = STATE(663), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1146), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58446,71 +58243,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [474] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(1937), - [sym_ErrorUnionExpr] = STATE(1937), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [471] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(1943), + [sym_ErrorUnionExpr] = STATE(1943), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2251), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1909), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2232), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1924), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -58536,53 +58333,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [475] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2277), - [sym_ErrorUnionExpr] = STATE(2277), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [472] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_ParamType] = STATE(2251), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1920), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2232), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1922), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_anytype] = ACTIONS(1006), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -58616,60 +58413,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [476] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1185), - [sym_ErrorUnionExpr] = STATE(1185), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_Payload] = STATE(586), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [473] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1202), + [sym_ErrorUnionExpr] = STATE(1202), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_Payload] = STATE(638), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -58677,7 +58474,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(1140), + [anon_sym_PIPE] = ACTIONS(1146), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58696,60 +58493,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [477] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(818), - [sym_ErrorUnionExpr] = STATE(818), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [474] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(1943), + [sym_ErrorUnionExpr] = STATE(1943), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_Payload] = STATE(657), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2303), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1921), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_anytype] = ACTIONS(948), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -58757,7 +58555,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), - [anon_sym_PIPE] = ACTIONS(1140), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -58776,52 +58573,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [478] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [475] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2279), + [sym_ErrorUnionExpr] = STATE(2279), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_ParamType] = STATE(2303), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1914), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_anytype] = ACTIONS(948), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -58855,139 +58653,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [479] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1427), - [sym_ErrorUnionExpr] = STATE(1427), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1126), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [480] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [476] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(815), + [sym_ErrorUnionExpr] = STATE(815), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_Payload] = STATE(658), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1104), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -58995,6 +58714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(1146), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -59013,64 +58733,381 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [481] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1030), - [sym_ErrorUnionExpr] = STATE(1030), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1150), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), + [477] = { + [sym_FnProto] = STATE(1628), + [sym__TypeExpr] = STATE(1869), + [sym_ErrorUnionExpr] = STATE(1869), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(696), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(696), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_anytype] = ACTIONS(1148), + [anon_sym_LBRACE] = ACTIONS(1120), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [478] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1741), + [sym_ErrorUnionExpr] = STATE(1741), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1150), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, + [479] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1426), + [sym_ErrorUnionExpr] = STATE(1426), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1090), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [480] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1137), + [sym_ErrorUnionExpr] = STATE(1137), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [481] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1064), + [sym_ErrorUnionExpr] = STATE(1064), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1154), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), [anon_sym_for] = ACTIONS(880), @@ -59092,60 +59129,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [482] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1051), - [sym_ErrorUnionExpr] = STATE(1051), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1061), + [sym_ErrorUnionExpr] = STATE(1061), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1122), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1098), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -59171,60 +59208,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [483] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1094), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1124), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -59250,60 +59287,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [484] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1099), - [sym_ErrorUnionExpr] = STATE(1099), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1051), + [sym_ErrorUnionExpr] = STATE(1051), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1120), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -59329,63 +59366,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [485] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1078), - [sym_ErrorUnionExpr] = STATE(1078), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1152), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(778), + [sym_ErrorUnionExpr] = STATE(778), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1158), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -59398,70 +59435,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [486] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(792), - [sym_ErrorUnionExpr] = STATE(792), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1154), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1122), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -59487,60 +59524,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [487] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1137), - [sym_ErrorUnionExpr] = STATE(1137), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1191), + [sym_ErrorUnionExpr] = STATE(1191), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1124), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1064), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -59566,60 +59603,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [488] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(792), - [sym_ErrorUnionExpr] = STATE(792), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1077), + [sym_ErrorUnionExpr] = STATE(1077), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1118), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [489] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(778), + [sym_ErrorUnionExpr] = STATE(778), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1160), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -59645,142 +59761,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [489] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1134), - [sym_ErrorUnionExpr] = STATE(1134), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1158), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, [490] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1116), - [sym_ErrorUnionExpr] = STATE(1116), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1064), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1428), + [sym_ErrorUnionExpr] = STATE(1428), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -59793,73 +59830,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [491] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1801), - [sym_ErrorUnionExpr] = STATE(1801), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1808), + [sym_ErrorUnionExpr] = STATE(1808), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1048), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -59872,70 +59909,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [492] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1156), - [sym_ErrorUnionExpr] = STATE(1156), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1148), + [sym_ErrorUnionExpr] = STATE(1148), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1160), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1134), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -59961,63 +59998,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [493] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1054), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1088), + [sym_ErrorUnionExpr] = STATE(1088), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -60030,70 +60067,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [494] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1058), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -60119,52 +60156,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [495] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(792), - [sym_ErrorUnionExpr] = STATE(792), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(759), + [sym_ErrorUnionExpr] = STATE(759), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [496] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1193), + [sym_ErrorUnionExpr] = STATE(1193), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1138), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [497] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(778), + [sym_ErrorUnionExpr] = STATE(778), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1166), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -60198,63 +60393,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [496] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1082), - [sym_ErrorUnionExpr] = STATE(1082), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [498] = { + [sym_FnProto] = STATE(1628), + [sym__TypeExpr] = STATE(1870), + [sym_ErrorUnionExpr] = STATE(1870), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(696), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(696), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_anytype] = ACTIONS(1168), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -60267,70 +60462,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [497] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1430), - [sym_ErrorUnionExpr] = STATE(1430), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [499] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1171), + [sym_ErrorUnionExpr] = STATE(1171), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1170), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [500] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1164), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1048), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -60356,63 +60630,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [498] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(762), - [sym_ErrorUnionExpr] = STATE(762), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1166), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [501] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1441), + [sym_ErrorUnionExpr] = STATE(1441), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1132), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -60425,73 +60699,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [499] = { - [sym_FnProto] = STATE(1633), - [sym__TypeExpr] = STATE(1861), - [sym_ErrorUnionExpr] = STATE(1861), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), + [502] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1831), + [sym_ErrorUnionExpr] = STATE(1831), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(702), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(702), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_anytype] = ACTIONS(1168), - [anon_sym_async] = ACTIONS(1144), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1136), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -60504,73 +60778,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [500] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1767), - [sym_ErrorUnionExpr] = STATE(1767), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [503] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1839), + [sym_ErrorUnionExpr] = STATE(1839), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1136), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1172), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -60583,70 +60857,228 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [501] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1434), - [sym_ErrorUnionExpr] = STATE(1434), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [504] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1782), + [sym_ErrorUnionExpr] = STATE(1782), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1086), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [505] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1128), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [506] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1445), + [sym_ErrorUnionExpr] = STATE(1445), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1134), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1058), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -60672,60 +61104,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [502] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [507] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(759), + [sym_ErrorUnionExpr] = STATE(759), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1074), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1174), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -60751,50 +61183,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [503] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1814), - [sym_ErrorUnionExpr] = STATE(1814), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [508] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1759), + [sym_ErrorUnionExpr] = STATE(1759), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_BANG] = ACTIONS(1176), [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), @@ -60830,139 +61262,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [504] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1132), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [505] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1412), - [sym_ErrorUnionExpr] = STATE(1412), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [509] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1426), + [sym_ErrorUnionExpr] = STATE(1426), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1066), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1110), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -60988,60 +61341,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [506] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1438), - [sym_ErrorUnionExpr] = STATE(1438), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [510] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1428), + [sym_ErrorUnionExpr] = STATE(1428), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1060), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1178), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -61067,63 +61420,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [507] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1756), - [sym_ErrorUnionExpr] = STATE(1756), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1170), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [511] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1075), + [sym_ErrorUnionExpr] = STATE(1075), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_BANG] = ACTIONS(1068), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -61136,83 +61489,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [508] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(762), - [sym_ErrorUnionExpr] = STATE(762), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1172), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), + [512] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1743), + [sym_ErrorUnionExpr] = STATE(1743), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1126), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, + [513] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(778), + [sym_ErrorUnionExpr] = STATE(778), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1180), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), [anon_sym_SQUOTE] = ACTIONS(97), @@ -61225,60 +61657,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [509] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1430), - [sym_ErrorUnionExpr] = STATE(1430), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [514] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1398), + [sym_ErrorUnionExpr] = STATE(1398), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1174), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -61304,142 +61736,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [510] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1168), - [sym_ErrorUnionExpr] = STATE(1168), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1128), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [511] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1106), - [sym_ErrorUnionExpr] = STATE(1106), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_BANG] = ACTIONS(1068), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [515] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1419), + [sym_ErrorUnionExpr] = STATE(1419), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1056), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -61452,73 +61805,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [512] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1741), - [sym_ErrorUnionExpr] = STATE(1741), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [516] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1835), + [sym_ErrorUnionExpr] = STATE(1835), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1184), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -61531,73 +61884,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [513] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1411), - [sym_ErrorUnionExpr] = STATE(1411), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [517] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1112), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -61610,73 +61963,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [514] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1739), - [sym_ErrorUnionExpr] = STATE(1739), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), + [518] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1178), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1078), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -61689,70 +62042,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [515] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(792), - [sym_ErrorUnionExpr] = STATE(792), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [519] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1180), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1046), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -61778,50 +62131,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [516] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1762), - [sym_ErrorUnionExpr] = STATE(1762), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [520] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1729), + [sym_ErrorUnionExpr] = STATE(1729), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1182), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), @@ -61857,60 +62210,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [517] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [521] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1195), + [sym_ErrorUnionExpr] = STATE(1195), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_BANG] = ACTIONS(1062), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [522] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1070), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -61936,63 +62368,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [518] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1827), - [sym_ErrorUnionExpr] = STATE(1827), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [523] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1822), + [sym_ErrorUnionExpr] = STATE(1822), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1114), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_BANG] = ACTIONS(1108), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -62005,62 +62437,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [519] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [524] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1050), + [anon_sym_BANG] = ACTIONS(1080), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -62094,60 +62526,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [520] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [525] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1056), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62173,60 +62605,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [521] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [526] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1046), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1102), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62252,60 +62684,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [522] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [527] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1112), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1084), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62331,63 +62763,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [523] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1427), - [sym_ErrorUnionExpr] = STATE(1427), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1108), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [528] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(759), + [sym_ErrorUnionExpr] = STATE(759), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1186), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -62400,73 +62832,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [524] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1717), - [sym_ErrorUnionExpr] = STATE(1717), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1080), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [529] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -62479,70 +62911,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [525] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [530] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_BANG] = ACTIONS(1100), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62568,60 +63000,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [526] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [531] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(793), + [sym_ErrorUnionExpr] = STATE(793), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1076), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1072), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62647,60 +63079,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [527] = { - [sym_FnProto] = STATE(1633), - [sym__TypeExpr] = STATE(1864), - [sym_ErrorUnionExpr] = STATE(1864), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(702), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(702), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [532] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1398), + [sym_ErrorUnionExpr] = STATE(1398), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(1188), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [533] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1727), + [sym_ErrorUnionExpr] = STATE(1727), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_anytype] = ACTIONS(1142), - [anon_sym_async] = ACTIONS(1144), + [anon_sym_BANG] = ACTIONS(1104), + [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), [anon_sym_packed] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(904), [anon_sym_switch] = ACTIONS(906), @@ -62726,60 +63237,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [528] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [534] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(778), + [sym_ErrorUnionExpr] = STATE(778), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1062), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1190), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62805,60 +63316,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [529] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(792), - [sym_ErrorUnionExpr] = STATE(792), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [535] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1184), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1092), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62884,60 +63395,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [530] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [536] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1100), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1074), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -62963,52 +63474,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [531] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [537] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(759), + [sym_ErrorUnionExpr] = STATE(759), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1192), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -63042,139 +63553,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [532] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1193), - [sym_ErrorUnionExpr] = STATE(1193), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_BANG] = ACTIONS(1086), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [533] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(762), - [sym_ErrorUnionExpr] = STATE(762), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [538] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(796), + [sym_ErrorUnionExpr] = STATE(796), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1186), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_BANG] = ACTIONS(1130), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63200,139 +63632,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [534] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1715), - [sym_ErrorUnionExpr] = STATE(1715), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1102), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, - [535] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(812), - [sym_ErrorUnionExpr] = STATE(812), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [539] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1098), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_BANG] = ACTIONS(1088), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63358,60 +63711,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [536] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1411), - [sym_ErrorUnionExpr] = STATE(1411), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [540] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1710), + [sym_ErrorUnionExpr] = STATE(1710), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(1070), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, + [541] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1441), + [sym_ErrorUnionExpr] = STATE(1441), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1188), - [anon_sym_async] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1094), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -63437,60 +63869,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [537] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(762), - [sym_ErrorUnionExpr] = STATE(762), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [542] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(797), + [sym_ErrorUnionExpr] = STATE(797), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1190), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63516,60 +63948,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [538] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [543] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(759), + [sym_ErrorUnionExpr] = STATE(759), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1088), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63595,60 +64027,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [539] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(772), - [sym_ErrorUnionExpr] = STATE(772), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [544] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(783), + [sym_ErrorUnionExpr] = STATE(783), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_BANG] = ACTIONS(1084), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_BANG] = ACTIONS(1082), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63674,63 +64106,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [540] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1697), - [sym_ErrorUnionExpr] = STATE(1697), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(1082), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [545] = { + [sym_FnProto] = STATE(1628), + [sym__TypeExpr] = STATE(1868), + [sym_ErrorUnionExpr] = STATE(1868), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(696), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(696), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_anytype] = ACTIONS(1140), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -63743,149 +64175,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [541] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1434), - [sym_ErrorUnionExpr] = STATE(1434), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [542] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(762), - [sym_ErrorUnionExpr] = STATE(762), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [546] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(772), + [sym_ErrorUnionExpr] = STATE(772), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_BANG] = ACTIONS(1192), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63911,60 +64263,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [543] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(795), - [sym_ErrorUnionExpr] = STATE(795), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [547] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(763), + [sym_ErrorUnionExpr] = STATE(763), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1138), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -63990,50 +64341,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [544] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1775), - [sym_ErrorUnionExpr] = STATE(1775), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [548] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1687), + [sym_ErrorUnionExpr] = STATE(1687), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1194), [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), @@ -64069,60 +64419,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [545] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(791), - [sym_ErrorUnionExpr] = STATE(791), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [549] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(798), + [sym_ErrorUnionExpr] = STATE(798), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_BANG] = ACTIONS(1072), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -64148,62 +64497,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [546] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(784), - [sym_ErrorUnionExpr] = STATE(784), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [550] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1680), + [sym_ErrorUnionExpr] = STATE(1680), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -64216,69 +64565,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [547] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(797), - [sym_ErrorUnionExpr] = STATE(797), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [551] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(1355), + [sym_ErrorUnionExpr] = STATE(1355), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -64304,140 +64653,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [548] = { - [sym_FnProto] = STATE(943), - [sym__TypeExpr] = STATE(1172), - [sym_ErrorUnionExpr] = STATE(1172), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(712), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(712), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [549] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1382), - [sym_ErrorUnionExpr] = STATE(1382), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [552] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1078), + [sym_ErrorUnionExpr] = STATE(1078), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -64450,69 +64721,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [550] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(766), - [sym_ErrorUnionExpr] = STATE(766), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [553] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(794), + [sym_ErrorUnionExpr] = STATE(794), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -64538,218 +64809,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [551] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1671), - [sym_ErrorUnionExpr] = STATE(1671), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, - [552] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1709), - [sym_ErrorUnionExpr] = STATE(1709), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, - [553] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1044), - [sym_ErrorUnionExpr] = STATE(1044), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [554] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1366), + [sym_ErrorUnionExpr] = STATE(1366), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -64762,69 +64877,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [554] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1046), - [sym_ErrorUnionExpr] = STATE(1046), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [555] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1076), + [sym_ErrorUnionExpr] = STATE(1076), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -64850,137 +64965,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [555] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(836), - [sym_ErrorUnionExpr] = STATE(836), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [556] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(766), - [sym_ErrorUnionExpr] = STATE(766), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(763), + [sym_ErrorUnionExpr] = STATE(763), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -65006,59 +65043,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [557] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(796), - [sym_ErrorUnionExpr] = STATE(796), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(803), + [sym_ErrorUnionExpr] = STATE(803), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -65084,137 +65121,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [558] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1399), - [sym_ErrorUnionExpr] = STATE(1399), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [559] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(826), - [sym_ErrorUnionExpr] = STATE(826), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(756), + [sym_ErrorUnionExpr] = STATE(756), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -65240,59 +65199,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [560] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1187), - [sym_ErrorUnionExpr] = STATE(1187), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [559] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1136), + [sym_ErrorUnionExpr] = STATE(1136), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -65318,62 +65277,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [561] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(751), - [sym_ErrorUnionExpr] = STATE(751), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [560] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1752), + [sym_ErrorUnionExpr] = STATE(1752), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -65386,72 +65345,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), + }, + [561] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1696), + [sym_ErrorUnionExpr] = STATE(1696), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [562] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(757), - [sym_ErrorUnionExpr] = STATE(757), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1761), + [sym_ErrorUnionExpr] = STATE(1761), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -65464,69 +65501,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [563] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(755), - [sym_ErrorUnionExpr] = STATE(755), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(803), + [sym_ErrorUnionExpr] = STATE(803), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -65552,62 +65589,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [564] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1413), - [sym_ErrorUnionExpr] = STATE(1413), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1762), + [sym_ErrorUnionExpr] = STATE(1762), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -65620,69 +65657,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [565] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1003), - [sym_ErrorUnionExpr] = STATE(1003), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1068), + [sym_ErrorUnionExpr] = STATE(1068), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -65708,137 +65745,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [566] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1414), - [sym_ErrorUnionExpr] = STATE(1414), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [567] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1002), - [sym_ErrorUnionExpr] = STATE(1002), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1066), + [sym_ErrorUnionExpr] = STATE(1066), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -65864,59 +65823,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [568] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(999), - [sym_ErrorUnionExpr] = STATE(999), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [567] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1013), + [sym_ErrorUnionExpr] = STATE(1013), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -65942,59 +65901,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [568] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(1345), + [sym_ErrorUnionExpr] = STATE(1345), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [569] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1103), - [sym_ErrorUnionExpr] = STATE(1103), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1014), + [sym_ErrorUnionExpr] = STATE(1014), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -66020,62 +66057,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [570] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1360), - [sym_ErrorUnionExpr] = STATE(1360), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1062), + [sym_ErrorUnionExpr] = STATE(1062), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -66088,72 +66125,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [571] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1175), - [sym_ErrorUnionExpr] = STATE(1175), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1016), + [sym_ErrorUnionExpr] = STATE(1016), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -66166,147 +66203,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [572] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1382), - [sym_ErrorUnionExpr] = STATE(1382), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [573] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(826), - [sym_ErrorUnionExpr] = STATE(826), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(771), + [sym_ErrorUnionExpr] = STATE(771), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66332,59 +66291,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [574] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(766), - [sym_ErrorUnionExpr] = STATE(766), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [573] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(799), + [sym_ErrorUnionExpr] = STATE(799), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66410,62 +66369,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [575] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1023), - [sym_ErrorUnionExpr] = STATE(1023), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [574] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1742), + [sym_ErrorUnionExpr] = STATE(1742), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -66478,69 +66437,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [576] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(751), - [sym_ErrorUnionExpr] = STATE(751), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [575] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(763), + [sym_ErrorUnionExpr] = STATE(763), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66566,59 +66525,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [577] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(757), - [sym_ErrorUnionExpr] = STATE(757), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [576] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(1360), + [sym_ErrorUnionExpr] = STATE(1360), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66644,59 +66603,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [578] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(755), - [sym_ErrorUnionExpr] = STATE(755), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [577] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(756), + [sym_ErrorUnionExpr] = STATE(756), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66722,137 +66681,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [579] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1115), - [sym_ErrorUnionExpr] = STATE(1115), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [580] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(796), - [sym_ErrorUnionExpr] = STATE(796), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [578] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(757), + [sym_ErrorUnionExpr] = STATE(757), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66878,59 +66759,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [581] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(796), - [sym_ErrorUnionExpr] = STATE(796), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [579] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(758), + [sym_ErrorUnionExpr] = STATE(758), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -66956,137 +66837,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [582] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1024), - [sym_ErrorUnionExpr] = STATE(1024), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [583] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1025), - [sym_ErrorUnionExpr] = STATE(1025), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [580] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1053), + [sym_ErrorUnionExpr] = STATE(1053), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -67112,59 +66915,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [584] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(826), - [sym_ErrorUnionExpr] = STATE(826), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [581] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(799), + [sym_ErrorUnionExpr] = STATE(799), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -67190,59 +66993,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [585] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1433), - [sym_ErrorUnionExpr] = STATE(1433), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [582] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1394), + [sym_ErrorUnionExpr] = STATE(1394), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -67268,62 +67071,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [586] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1130), - [sym_ErrorUnionExpr] = STATE(1130), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), + [583] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1052), + [sym_ErrorUnionExpr] = STATE(1052), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -67336,150 +67139,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [587] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1132), - [sym_ErrorUnionExpr] = STATE(1132), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), + [584] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1048), + [sym_ErrorUnionExpr] = STATE(1048), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), - }, - [588] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1436), - [sym_ErrorUnionExpr] = STATE(1436), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -67492,69 +67217,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [589] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1136), - [sym_ErrorUnionExpr] = STATE(1136), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [585] = { + [sym_FnProto] = STATE(941), + [sym__TypeExpr] = STATE(1175), + [sym_ErrorUnionExpr] = STATE(1175), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(699), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(699), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(187), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -67580,59 +67305,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [590] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(797), - [sym_ErrorUnionExpr] = STATE(797), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [586] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(798), + [sym_ErrorUnionExpr] = STATE(798), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -67658,45 +67383,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [591] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1831), - [sym_ErrorUnionExpr] = STATE(1831), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [587] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1740), + [sym_ErrorUnionExpr] = STATE(1740), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), @@ -67736,137 +67461,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [592] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(784), - [sym_ErrorUnionExpr] = STATE(784), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), - }, - [593] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1153), - [sym_ErrorUnionExpr] = STATE(1153), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), + [588] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1190), + [sym_ErrorUnionExpr] = STATE(1190), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), [anon_sym_DOT] = ACTIONS(189), [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), [anon_sym_packed] = ACTIONS(197), [anon_sym_LPAREN] = ACTIONS(199), [anon_sym_switch] = ACTIONS(201), @@ -67892,62 +67539,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(211), [aux_sym_INTEGER_token4] = ACTIONS(211), [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [594] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1155), - [sym_ErrorUnionExpr] = STATE(1155), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [589] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1826), + [sym_ErrorUnionExpr] = STATE(1826), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -67960,72 +67607,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [595] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1165), - [sym_ErrorUnionExpr] = STATE(1165), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [590] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(798), + [sym_ErrorUnionExpr] = STATE(798), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68038,69 +67685,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [596] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(836), - [sym_ErrorUnionExpr] = STATE(836), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [591] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(757), + [sym_ErrorUnionExpr] = STATE(757), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -68126,59 +67773,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [597] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(782), - [sym_ErrorUnionExpr] = STATE(782), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [592] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(758), + [sym_ErrorUnionExpr] = STATE(758), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -68204,59 +67851,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [598] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1048), - [sym_ErrorUnionExpr] = STATE(1048), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), + [593] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1770), + [sym_ErrorUnionExpr] = STATE(1770), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [594] = { + [sym_FnProto] = STATE(922), + [sym__TypeExpr] = STATE(1096), + [sym_ErrorUnionExpr] = STATE(1096), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(710), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(710), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(145), [anon_sym_DOT] = ACTIONS(147), [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), [anon_sym_packed] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_switch] = ACTIONS(159), @@ -68282,62 +68007,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(169), [aux_sym_INTEGER_token4] = ACTIONS(169), [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [599] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(761), - [sym_ErrorUnionExpr] = STATE(761), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [595] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1404), + [sym_ErrorUnionExpr] = STATE(1404), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68350,72 +68075,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [600] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(794), - [sym_ErrorUnionExpr] = STATE(794), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), + [596] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1406), + [sym_ErrorUnionExpr] = STATE(1406), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68428,69 +68153,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [601] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(799), - [sym_ErrorUnionExpr] = STATE(799), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [597] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(772), + [sym_ErrorUnionExpr] = STATE(772), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -68516,62 +68241,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [602] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(799), - [sym_ErrorUnionExpr] = STATE(799), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [598] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1737), + [sym_ErrorUnionExpr] = STATE(1737), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68584,72 +68309,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [603] = { - [sym_FnProto] = STATE(940), - [sym__TypeExpr] = STATE(1158), - [sym_ErrorUnionExpr] = STATE(1158), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(696), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), + [599] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1833), + [sym_ErrorUnionExpr] = STATE(1833), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [600] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1108), + [sym_ErrorUnionExpr] = STATE(1108), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(696), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68662,69 +68465,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [604] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(761), - [sym_ErrorUnionExpr] = STATE(761), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [601] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(795), + [sym_ErrorUnionExpr] = STATE(795), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -68750,62 +68553,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [605] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1813), - [sym_ErrorUnionExpr] = STATE(1813), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [602] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1834), + [sym_ErrorUnionExpr] = STATE(1834), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -68818,69 +68621,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [606] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1359), - [sym_ErrorUnionExpr] = STATE(1359), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [603] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1427), + [sym_ErrorUnionExpr] = STATE(1427), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -68906,59 +68709,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [607] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(782), - [sym_ErrorUnionExpr] = STATE(782), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [604] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(785), + [sym_ErrorUnionExpr] = STATE(785), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -68984,59 +68787,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [608] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(784), - [sym_ErrorUnionExpr] = STATE(784), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [605] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1417), + [sym_ErrorUnionExpr] = STATE(1417), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [606] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(794), + [sym_ErrorUnionExpr] = STATE(794), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -69062,59 +68943,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [609] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(761), - [sym_ErrorUnionExpr] = STATE(761), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [607] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1196), + [sym_ErrorUnionExpr] = STATE(1196), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [608] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(767), + [sym_ErrorUnionExpr] = STATE(767), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -69140,59 +69099,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [610] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(836), - [sym_ErrorUnionExpr] = STATE(836), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [609] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(772), + [sym_ErrorUnionExpr] = STATE(772), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -69218,59 +69177,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [611] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(808), - [sym_ErrorUnionExpr] = STATE(808), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [610] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(803), + [sym_ErrorUnionExpr] = STATE(803), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(698), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(698), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(709), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(709), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -69296,59 +69255,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [612] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1347), - [sym_ErrorUnionExpr] = STATE(1347), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [611] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1348), + [sym_ErrorUnionExpr] = STATE(1348), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -69374,62 +69333,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [613] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1779), - [sym_ErrorUnionExpr] = STATE(1779), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [612] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1366), + [sym_ErrorUnionExpr] = STATE(1366), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -69442,69 +69401,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [614] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1345), - [sym_ErrorUnionExpr] = STATE(1345), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [613] = { + [sym_FnProto] = STATE(1296), + [sym__TypeExpr] = STATE(1405), + [sym_ErrorUnionExpr] = STATE(1405), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(703), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(703), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(237), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -69530,59 +69489,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [615] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1432), - [sym_ErrorUnionExpr] = STATE(1432), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [614] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1350), + [sym_ErrorUnionExpr] = STATE(1350), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -69608,59 +69567,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, + [615] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(994), + [sym_ErrorUnionExpr] = STATE(994), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, [616] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1344), - [sym_ErrorUnionExpr] = STATE(1344), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1346), + [sym_ErrorUnionExpr] = STATE(1346), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -69686,62 +69723,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [617] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1696), - [sym_ErrorUnionExpr] = STATE(1696), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(990), + [sym_ErrorUnionExpr] = STATE(990), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -69754,61 +69791,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [618] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(782), - [sym_ErrorUnionExpr] = STATE(782), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(1997), + [sym_ErrorUnionExpr] = STATE(1997), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -69842,51 +69879,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [619] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(1988), - [sym_ErrorUnionExpr] = STATE(1988), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(805), + [sym_ErrorUnionExpr] = STATE(805), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(713), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(713), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -69920,59 +69957,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [620] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(799), - [sym_ErrorUnionExpr] = STATE(799), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(794), + [sym_ErrorUnionExpr] = STATE(794), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -69998,59 +70035,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [621] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(797), - [sym_ErrorUnionExpr] = STATE(797), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(795), + [sym_ErrorUnionExpr] = STATE(795), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70076,59 +70113,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [622] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(794), - [sym_ErrorUnionExpr] = STATE(794), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(803), + [sym_ErrorUnionExpr] = STATE(803), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70154,62 +70191,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [623] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(761), - [sym_ErrorUnionExpr] = STATE(761), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1192), + [sym_ErrorUnionExpr] = STATE(1192), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -70222,72 +70259,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [624] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1712), - [sym_ErrorUnionExpr] = STATE(1712), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1027), + [sym_ErrorUnionExpr] = STATE(1027), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -70300,61 +70337,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [625] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(766), - [sym_ErrorUnionExpr] = STATE(766), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(763), + [sym_ErrorUnionExpr] = STATE(763), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -70388,59 +70425,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [626] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(794), - [sym_ErrorUnionExpr] = STATE(794), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(772), + [sym_ErrorUnionExpr] = STATE(772), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70466,62 +70503,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [627] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1716), - [sym_ErrorUnionExpr] = STATE(1716), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(763), + [sym_ErrorUnionExpr] = STATE(763), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -70534,69 +70571,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [628] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(826), - [sym_ErrorUnionExpr] = STATE(826), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(803), + [sym_ErrorUnionExpr] = STATE(803), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70622,51 +70659,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [629] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(2363), - [sym_ErrorUnionExpr] = STATE(2363), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(767), + [sym_ErrorUnionExpr] = STATE(767), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -70700,59 +70737,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [630] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(794), - [sym_ErrorUnionExpr] = STATE(794), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1434), + [sym_ErrorUnionExpr] = STATE(1434), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [631] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(2328), + [sym_ErrorUnionExpr] = STATE(2328), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70778,59 +70893,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [631] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(797), - [sym_ErrorUnionExpr] = STATE(797), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [632] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(798), + [sym_ErrorUnionExpr] = STATE(798), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70856,59 +70971,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [632] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(794), - [sym_ErrorUnionExpr] = STATE(794), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [633] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(785), + [sym_ErrorUnionExpr] = STATE(785), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -70934,137 +71049,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [633] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1829), - [sym_ErrorUnionExpr] = STATE(1829), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), - }, [634] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1349), - [sym_ErrorUnionExpr] = STATE(1349), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1351), + [sym_ErrorUnionExpr] = STATE(1351), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -71090,59 +71127,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [635] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1350), - [sym_ErrorUnionExpr] = STATE(1350), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1352), + [sym_ErrorUnionExpr] = STATE(1352), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -71168,59 +71205,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [636] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1352), - [sym_ErrorUnionExpr] = STATE(1352), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1343), + [sym_ErrorUnionExpr] = STATE(1343), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -71246,62 +71283,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [637] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(766), - [sym_ErrorUnionExpr] = STATE(766), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1437), + [sym_ErrorUnionExpr] = STATE(1437), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71314,72 +71351,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [638] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(808), - [sym_ErrorUnionExpr] = STATE(808), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(701), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(701), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1152), + [sym_ErrorUnionExpr] = STATE(1152), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71392,72 +71429,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [639] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1729), - [sym_ErrorUnionExpr] = STATE(1729), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1138), + [sym_ErrorUnionExpr] = STATE(1138), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71470,72 +71507,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [640] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1835), - [sym_ErrorUnionExpr] = STATE(1835), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1394), + [sym_ErrorUnionExpr] = STATE(1394), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71548,76 +71585,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), - }, - [641] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1733), - [sym_ErrorUnionExpr] = STATE(1733), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [641] = { + [sym_FnProto] = STATE(915), + [sym__TypeExpr] = STATE(1089), + [sym_ErrorUnionExpr] = STATE(1089), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(707), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(707), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), [anon_sym_STAR] = ACTIONS(341), [anon_sym_STAR_STAR] = ACTIONS(343), [anon_sym_QMARK] = ACTIONS(87), @@ -71626,72 +71663,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, [642] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1836), - [sym_ErrorUnionExpr] = STATE(1836), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(799), + [sym_ErrorUnionExpr] = STATE(799), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71704,72 +71741,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [643] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1740), - [sym_ErrorUnionExpr] = STATE(1740), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1173), + [sym_ErrorUnionExpr] = STATE(1173), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71782,72 +71819,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [644] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1399), - [sym_ErrorUnionExpr] = STATE(1399), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1172), + [sym_ErrorUnionExpr] = STATE(1172), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -71860,69 +71897,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, [645] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(1341), - [sym_ErrorUnionExpr] = STATE(1341), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1788), + [sym_ErrorUnionExpr] = STATE(1788), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [646] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(767), + [sym_ErrorUnionExpr] = STATE(767), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -71948,62 +72063,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [646] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1760), - [sym_ErrorUnionExpr] = STATE(1760), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [647] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1168), + [sym_ErrorUnionExpr] = STATE(1168), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -72016,69 +72131,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [647] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1413), - [sym_ErrorUnionExpr] = STATE(1413), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [648] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1404), + [sym_ErrorUnionExpr] = STATE(1404), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -72104,59 +72219,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [648] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1414), - [sym_ErrorUnionExpr] = STATE(1414), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [649] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1406), + [sym_ErrorUnionExpr] = STATE(1406), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -72182,137 +72297,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [649] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1757), - [sym_ErrorUnionExpr] = STATE(1757), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, [650] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(1339), - [sym_ErrorUnionExpr] = STATE(1339), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(771), + [sym_ErrorUnionExpr] = STATE(771), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -72338,62 +72375,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [651] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1752), - [sym_ErrorUnionExpr] = STATE(1752), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(1963), + [sym_ErrorUnionExpr] = STATE(1963), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -72406,69 +72443,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [652] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(1346), - [sym_ErrorUnionExpr] = STATE(1346), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(799), + [sym_ErrorUnionExpr] = STATE(799), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(706), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(706), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -72494,62 +72531,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [653] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1031), - [sym_ErrorUnionExpr] = STATE(1031), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1806), + [sym_ErrorUnionExpr] = STATE(1806), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -72562,69 +72599,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [654] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(784), - [sym_ErrorUnionExpr] = STATE(784), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1836), + [sym_ErrorUnionExpr] = STATE(1836), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [655] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(794), + [sym_ErrorUnionExpr] = STATE(794), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -72650,137 +72765,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [655] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1073), - [sym_ErrorUnionExpr] = STATE(1073), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, [656] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1360), - [sym_ErrorUnionExpr] = STATE(1360), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1427), + [sym_ErrorUnionExpr] = STATE(1427), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -72806,59 +72843,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [657] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(836), - [sym_ErrorUnionExpr] = STATE(836), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(795), + [sym_ErrorUnionExpr] = STATE(795), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(707), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(707), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -72884,59 +72921,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [658] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(797), - [sym_ErrorUnionExpr] = STATE(797), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(771), + [sym_ErrorUnionExpr] = STATE(771), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -72962,62 +72999,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [659] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1800), - [sym_ErrorUnionExpr] = STATE(1800), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(785), + [sym_ErrorUnionExpr] = STATE(785), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -73030,69 +73067,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [660] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(759), - [sym_ErrorUnionExpr] = STATE(759), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1842), + [sym_ErrorUnionExpr] = STATE(1842), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [661] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(785), + [sym_ErrorUnionExpr] = STATE(785), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -73118,137 +73233,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [661] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1433), - [sym_ErrorUnionExpr] = STATE(1433), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, [662] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1436), - [sym_ErrorUnionExpr] = STATE(1436), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1434), + [sym_ErrorUnionExpr] = STATE(1434), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -73274,59 +73311,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [663] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1410), - [sym_ErrorUnionExpr] = STATE(1410), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1437), + [sym_ErrorUnionExpr] = STATE(1437), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(711), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(711), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -73352,59 +73389,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [664] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(799), - [sym_ErrorUnionExpr] = STATE(799), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(805), + [sym_ErrorUnionExpr] = STATE(805), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -73430,137 +73467,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [665] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1795), - [sym_ErrorUnionExpr] = STATE(1795), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), - }, - [666] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(808), - [sym_ErrorUnionExpr] = STATE(808), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(772), + [sym_ErrorUnionExpr] = STATE(772), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -73586,62 +73545,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [667] = { - [sym_FnProto] = STATE(921), - [sym__TypeExpr] = STATE(1052), - [sym_ErrorUnionExpr] = STATE(1052), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(699), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(699), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [666] = { + [sym_FnProto] = STATE(936), + [sym__TypeExpr] = STATE(1133), + [sym_ErrorUnionExpr] = STATE(1133), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(705), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(705), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -73654,55 +73613,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [668] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1776), - [sym_ErrorUnionExpr] = STATE(1776), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [667] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1683), + [sym_ErrorUnionExpr] = STATE(1683), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), @@ -73742,59 +73701,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, + [668] = { + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1845), + [sym_ErrorUnionExpr] = STATE(1845), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, [669] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1359), - [sym_ErrorUnionExpr] = STATE(1359), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1443), + [sym_ErrorUnionExpr] = STATE(1443), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -73820,62 +73857,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [670] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1659), - [sym_ErrorUnionExpr] = STATE(1659), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(1639), + [sym__TypeExpr] = STATE(1813), + [sym_ErrorUnionExpr] = STATE(1813), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(698), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(698), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -73888,72 +73925,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, [671] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1660), - [sym_ErrorUnionExpr] = STATE(1660), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1443), + [sym_ErrorUnionExpr] = STATE(1443), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -73966,72 +74003,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, [672] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1666), - [sym_ErrorUnionExpr] = STATE(1666), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1667), + [sym_ErrorUnionExpr] = STATE(1667), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -74044,72 +74081,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [673] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(761), - [sym_ErrorUnionExpr] = STATE(761), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1671), + [sym_ErrorUnionExpr] = STATE(1671), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -74122,72 +74159,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [674] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(817), - [sym_ErrorUnionExpr] = STATE(817), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1672), + [sym_ErrorUnionExpr] = STATE(1672), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -74200,69 +74237,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, [675] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1432), - [sym_ErrorUnionExpr] = STATE(1432), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1363), + [sym_ErrorUnionExpr] = STATE(1363), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -74288,62 +74325,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, [676] = { - [sym_FnProto] = STATE(1294), - [sym__TypeExpr] = STATE(1398), - [sym_ErrorUnionExpr] = STATE(1398), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(697), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(697), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(237), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(805), + [sym_ErrorUnionExpr] = STATE(805), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(701), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(701), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -74356,69 +74393,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, [677] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(819), - [sym_ErrorUnionExpr] = STATE(819), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(767), + [sym_ErrorUnionExpr] = STATE(767), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -74444,137 +74481,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [678] = { - [sym_FnProto] = STATE(1632), - [sym__TypeExpr] = STATE(1766), - [sym_ErrorUnionExpr] = STATE(1766), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(705), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(705), - [aux_sym_LINESTRING_repeat1] = STATE(1678), - [anon_sym_comptime] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(886), - [anon_sym_inline] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(894), - [anon_sym_DOT] = ACTIONS(896), - [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(900), - [anon_sym_null] = ACTIONS(900), - [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(900), - [anon_sym_undefined] = ACTIONS(900), - [anon_sym_unreachable] = ACTIONS(900), - [sym_BuildinTypeExpr] = ACTIONS(900), - [anon_sym_packed] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_switch] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(908), - [aux_sym_FLOAT_token1] = ACTIONS(910), - [aux_sym_FLOAT_token2] = ACTIONS(910), - [aux_sym_FLOAT_token3] = ACTIONS(910), - [aux_sym_FLOAT_token4] = ACTIONS(910), - [aux_sym_INTEGER_token1] = ACTIONS(912), - [aux_sym_INTEGER_token2] = ACTIONS(912), - [aux_sym_INTEGER_token3] = ACTIONS(914), - [aux_sym_INTEGER_token4] = ACTIONS(914), - [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), - [aux_sym_IDENTIFIER_token1] = ACTIONS(920), - [anon_sym_AT] = ACTIONS(922), - }, - [679] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(808), - [sym_ErrorUnionExpr] = STATE(808), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(771), + [sym_ErrorUnionExpr] = STATE(771), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(714), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(714), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -74600,137 +74559,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [680] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1054), - [sym_ErrorUnionExpr] = STATE(1054), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [681] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(826), - [sym_ErrorUnionExpr] = STATE(826), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [679] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(805), + [sym_ErrorUnionExpr] = STATE(805), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(704), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(704), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -74756,137 +74637,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [682] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1084), - [sym_ErrorUnionExpr] = STATE(1084), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [683] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(784), - [sym_ErrorUnionExpr] = STATE(784), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [680] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(829), + [sym_ErrorUnionExpr] = STATE(829), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), + [anon_sym_inline] = ACTIONS(942), [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -74912,59 +74715,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [684] = { - [sym_FnProto] = STATE(1633), - [sym__TypeExpr] = STATE(1789), - [sym_ErrorUnionExpr] = STATE(1789), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(702), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(702), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [681] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1363), + [sym_ErrorUnionExpr] = STATE(1363), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(706), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(706), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(780), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), + }, + [682] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1709), + [sym_ErrorUnionExpr] = STATE(1709), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(1144), + [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), [anon_sym_packed] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(904), [anon_sym_switch] = ACTIONS(906), @@ -74990,51 +74871,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [685] = { - [sym_FnProto] = STATE(719), - [sym__TypeExpr] = STATE(1967), - [sym_ErrorUnionExpr] = STATE(1967), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [683] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(785), + [sym_ErrorUnionExpr] = STATE(785), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(704), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(704), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -75068,59 +74949,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [686] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(796), - [sym_ErrorUnionExpr] = STATE(796), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [684] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(767), + [sym_ErrorUnionExpr] = STATE(767), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(708), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(708), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -75146,62 +75027,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [687] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(799), - [sym_ErrorUnionExpr] = STATE(799), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [685] = { + [sym_FnProto] = STATE(1628), + [sym__TypeExpr] = STATE(1824), + [sym_ErrorUnionExpr] = STATE(1824), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(696), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(696), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -75214,69 +75095,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), }, - [688] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(782), - [sym_ErrorUnionExpr] = STATE(782), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [686] = { + [sym_FnProto] = STATE(716), + [sym__TypeExpr] = STATE(794), + [sym_ErrorUnionExpr] = STATE(794), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(710), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(710), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(697), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(697), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(127), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -75302,59 +75183,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [689] = { - [sym_FnProto] = STATE(720), - [sym__TypeExpr] = STATE(782), - [sym_ErrorUnionExpr] = STATE(782), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [687] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(795), + [sym_ErrorUnionExpr] = STATE(795), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(709), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(709), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -75380,218 +75261,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [690] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1077), - [sym_ErrorUnionExpr] = STATE(1077), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [691] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1667), - [sym_ErrorUnionExpr] = STATE(1667), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), - }, - [692] = { - [sym_FnProto] = STATE(1618), - [sym__TypeExpr] = STATE(1674), - [sym_ErrorUnionExpr] = STATE(1674), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(708), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(708), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [688] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1726), + [sym_ErrorUnionExpr] = STATE(1726), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), + [anon_sym_comptime] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(886), + [anon_sym_inline] = ACTIONS(888), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_async] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(896), + [anon_sym_error] = ACTIONS(898), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), + [anon_sym_anyframe] = ACTIONS(902), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), + [anon_sym_packed] = ACTIONS(886), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_switch] = ACTIONS(906), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -75604,69 +75329,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(908), + [aux_sym_FLOAT_token1] = ACTIONS(910), + [aux_sym_FLOAT_token2] = ACTIONS(910), + [aux_sym_FLOAT_token3] = ACTIONS(910), + [aux_sym_FLOAT_token4] = ACTIONS(910), + [aux_sym_INTEGER_token1] = ACTIONS(912), + [aux_sym_INTEGER_token2] = ACTIONS(912), + [aux_sym_INTEGER_token3] = ACTIONS(914), + [aux_sym_INTEGER_token4] = ACTIONS(914), + [anon_sym_DQUOTE] = ACTIONS(916), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), + [aux_sym_IDENTIFIER_token1] = ACTIONS(920), + [anon_sym_AT] = ACTIONS(922), }, - [693] = { - [sym_FnProto] = STATE(1303), - [sym__TypeExpr] = STATE(1410), - [sym_ErrorUnionExpr] = STATE(1410), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [689] = { + [sym_FnProto] = STATE(1304), + [sym__TypeExpr] = STATE(1417), + [sym_ErrorUnionExpr] = STATE(1417), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(700), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(700), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(712), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(712), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -75692,217 +75417,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [694] = { - [sym_FnProto] = STATE(925), - [sym__TypeExpr] = STATE(1097), - [sym_ErrorUnionExpr] = STATE(1097), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(703), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(703), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [695] = { - [sym_FnProto] = STATE(1294), - [sym__TypeExpr] = STATE(1398), - [sym_ErrorUnionExpr] = STATE(1398), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(713), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(713), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(283), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [696] = { - [sym_FnProto] = STATE(940), - [sym_ErrorUnionExpr] = STATE(1118), - [sym_SuffixExpr] = STATE(1188), - [sym__PrimaryTypeExpr] = STATE(940), - [sym_ContainerDecl] = STATE(940), - [sym_ErrorSetDecl] = STATE(940), - [sym_GroupedExpr] = STATE(940), - [sym_IfTypeExpr] = STATE(940), - [sym_LabeledTypeExpr] = STATE(940), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(940), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(940), - [sym_FLOAT] = STATE(940), - [sym_INTEGER] = STATE(940), - [sym_STRINGLITERALSINGLE] = STATE(940), - [sym_LINESTRING] = STATE(940), - [sym__STRINGLITERAL] = STATE(940), - [sym_IDENTIFIER] = STATE(911), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(834), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(836), - [anon_sym_null] = ACTIONS(836), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(836), - [anon_sym_undefined] = ACTIONS(836), - [anon_sym_unreachable] = ACTIONS(836), - [sym_BuildinTypeExpr] = ACTIONS(836), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [690] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(795), + [sym_ErrorUnionExpr] = STATE(795), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -75915,59 +75485,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [697] = { - [sym_FnProto] = STATE(1294), - [sym_ErrorUnionExpr] = STATE(1373), - [sym_SuffixExpr] = STATE(1557), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [691] = { + [sym_FnProto] = STATE(1296), + [sym__TypeExpr] = STATE(1405), + [sym_ErrorUnionExpr] = STATE(1405), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_BlockLabel] = STATE(1930), - [sym_IfPrefix] = STATE(634), - [sym_WhilePrefix] = STATE(635), - [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(702), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(702), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), - [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(237), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(301), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), [anon_sym_false] = ACTIONS(243), @@ -76002,58 +75573,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [698] = { - [sym_FnProto] = STATE(719), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(948), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [692] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(798), + [sym_ErrorUnionExpr] = STATE(798), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), + [sym_PrefixTypeOp] = STATE(714), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(714), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(61), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -76079,212 +75651,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [699] = { - [sym_FnProto] = STATE(921), - [sym_ErrorUnionExpr] = STATE(1037), - [sym_SuffixExpr] = STATE(1242), - [sym__PrimaryTypeExpr] = STATE(921), - [sym_ContainerDecl] = STATE(921), - [sym_ErrorSetDecl] = STATE(921), - [sym_GroupedExpr] = STATE(921), - [sym_IfTypeExpr] = STATE(921), - [sym_LabeledTypeExpr] = STATE(921), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(921), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(921), - [sym_FLOAT] = STATE(921), - [sym_INTEGER] = STATE(921), - [sym_STRINGLITERALSINGLE] = STATE(921), - [sym_LINESTRING] = STATE(921), - [sym__STRINGLITERAL] = STATE(921), - [sym_IDENTIFIER] = STATE(868), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(145), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(151), - [anon_sym_null] = ACTIONS(151), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(151), - [anon_sym_undefined] = ACTIONS(151), - [anon_sym_unreachable] = ACTIONS(151), - [sym_BuildinTypeExpr] = ACTIONS(151), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), - }, - [700] = { - [sym_FnProto] = STATE(1303), - [sym_ErrorUnionExpr] = STATE(1373), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), - [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), - [sym_WhilePrefix] = STATE(614), - [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), - [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(808), - [anon_sym_DOT] = ACTIONS(578), - [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), - [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), - [anon_sym_packed] = ACTIONS(219), - [anon_sym_LPAREN] = ACTIONS(247), - [anon_sym_switch] = ACTIONS(249), - [anon_sym_LBRACK] = ACTIONS(77), - [anon_sym_if] = ACTIONS(876), - [anon_sym_while] = ACTIONS(878), - [anon_sym_for] = ACTIONS(880), - [anon_sym_STAR] = ACTIONS(341), - [anon_sym_STAR_STAR] = ACTIONS(343), - [anon_sym_QMARK] = ACTIONS(87), - [anon_sym_struct] = ACTIONS(89), - [anon_sym_opaque] = ACTIONS(89), - [anon_sym_enum] = ACTIONS(91), - [anon_sym_union] = ACTIONS(93), - [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(253), - [aux_sym_FLOAT_token1] = ACTIONS(255), - [aux_sym_FLOAT_token2] = ACTIONS(255), - [aux_sym_FLOAT_token3] = ACTIONS(255), - [aux_sym_FLOAT_token4] = ACTIONS(255), - [aux_sym_INTEGER_token1] = ACTIONS(257), - [aux_sym_INTEGER_token2] = ACTIONS(257), - [aux_sym_INTEGER_token3] = ACTIONS(259), - [aux_sym_INTEGER_token4] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), - [aux_sym_IDENTIFIER_token1] = ACTIONS(265), - [anon_sym_AT] = ACTIONS(267), - }, - [701] = { - [sym_FnProto] = STATE(719), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(1602), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [693] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(825), + [sym_ErrorUnionExpr] = STATE(825), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(319), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(67), - [anon_sym_null] = ACTIONS(67), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(67), - [anon_sym_undefined] = ACTIONS(67), - [anon_sym_unreachable] = ACTIONS(67), - [sym_BuildinTypeExpr] = ACTIONS(67), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -76310,58 +75729,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [702] = { - [sym_FnProto] = STATE(1633), - [sym_ErrorUnionExpr] = STATE(1834), - [sym_SuffixExpr] = STATE(1862), - [sym__PrimaryTypeExpr] = STATE(1633), - [sym_ContainerDecl] = STATE(1633), - [sym_ErrorSetDecl] = STATE(1633), - [sym_GroupedExpr] = STATE(1633), - [sym_IfTypeExpr] = STATE(1633), - [sym_LabeledTypeExpr] = STATE(1633), - [sym_LoopTypeExpr] = STATE(1802), - [sym_ForTypeExpr] = STATE(1778), - [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1633), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1633), - [sym_FLOAT] = STATE(1633), - [sym_INTEGER] = STATE(1633), - [sym_STRINGLITERALSINGLE] = STATE(1633), - [sym_LINESTRING] = STATE(1633), - [sym__STRINGLITERAL] = STATE(1633), - [sym_IDENTIFIER] = STATE(1620), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [694] = { + [sym_FnProto] = STATE(1626), + [sym__TypeExpr] = STATE(1728), + [sym_ErrorUnionExpr] = STATE(1728), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(700), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(700), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), [anon_sym_fn] = ACTIONS(890), - [anon_sym_async] = ACTIONS(1144), + [anon_sym_async] = ACTIONS(894), [anon_sym_DOT] = ACTIONS(896), [anon_sym_error] = ACTIONS(898), - [anon_sym_false] = ACTIONS(1146), - [anon_sym_null] = ACTIONS(1146), + [anon_sym_false] = ACTIONS(900), + [anon_sym_null] = ACTIONS(900), [anon_sym_anyframe] = ACTIONS(902), - [anon_sym_true] = ACTIONS(1146), - [anon_sym_undefined] = ACTIONS(1146), - [anon_sym_unreachable] = ACTIONS(1146), - [sym_BuildinTypeExpr] = ACTIONS(1146), + [anon_sym_true] = ACTIONS(900), + [anon_sym_undefined] = ACTIONS(900), + [anon_sym_unreachable] = ACTIONS(900), + [sym_BuildinTypeExpr] = ACTIONS(900), [anon_sym_packed] = ACTIONS(886), [anon_sym_LPAREN] = ACTIONS(904), [anon_sym_switch] = ACTIONS(906), @@ -76387,61 +75807,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [703] = { - [sym_FnProto] = STATE(925), - [sym_ErrorUnionExpr] = STATE(1037), - [sym_SuffixExpr] = STATE(1102), - [sym__PrimaryTypeExpr] = STATE(925), - [sym_ContainerDecl] = STATE(925), - [sym_ErrorSetDecl] = STATE(925), - [sym_GroupedExpr] = STATE(925), - [sym_IfTypeExpr] = STATE(925), - [sym_LabeledTypeExpr] = STATE(925), - [sym_LoopTypeExpr] = STATE(1076), - [sym_ForTypeExpr] = STATE(1074), - [sym_WhileTypeExpr] = STATE(1074), - [sym_SwitchExpr] = STATE(925), - [sym_BlockLabel] = STATE(1927), - [sym_IfPrefix] = STATE(565), - [sym_WhilePrefix] = STATE(567), - [sym_ForPrefix] = STATE(568), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1072), - [sym_ContainerDeclType] = STATE(2327), - [sym_CHAR_LITERAL] = STATE(925), - [sym_FLOAT] = STATE(925), - [sym_INTEGER] = STATE(925), - [sym_STRINGLITERALSINGLE] = STATE(925), - [sym_LINESTRING] = STATE(925), - [sym__STRINGLITERAL] = STATE(925), - [sym_IDENTIFIER] = STATE(895), - [sym_BUILTINIDENTIFIER] = STATE(2248), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(956), - [anon_sym_comptime] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(155), - [anon_sym_inline] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(790), - [anon_sym_async] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(147), - [anon_sym_error] = ACTIONS(149), - [anon_sym_false] = ACTIONS(824), - [anon_sym_null] = ACTIONS(824), - [anon_sym_anyframe] = ACTIONS(153), - [anon_sym_true] = ACTIONS(824), - [anon_sym_undefined] = ACTIONS(824), - [anon_sym_unreachable] = ACTIONS(824), - [sym_BuildinTypeExpr] = ACTIONS(824), - [anon_sym_packed] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_switch] = ACTIONS(159), + [695] = { + [sym_FnProto] = STATE(717), + [sym__TypeExpr] = STATE(814), + [sym_ErrorUnionExpr] = STATE(814), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(711), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(711), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -76454,60 +75875,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(163), - [aux_sym_FLOAT_token1] = ACTIONS(165), - [aux_sym_FLOAT_token2] = ACTIONS(165), - [aux_sym_FLOAT_token3] = ACTIONS(165), - [aux_sym_FLOAT_token4] = ACTIONS(165), - [aux_sym_INTEGER_token1] = ACTIONS(167), - [aux_sym_INTEGER_token2] = ACTIONS(167), - [aux_sym_INTEGER_token3] = ACTIONS(169), - [aux_sym_INTEGER_token4] = ACTIONS(169), - [anon_sym_DQUOTE] = ACTIONS(171), - [aux_sym_LINESTRING_token1] = ACTIONS(173), - [aux_sym_IDENTIFIER_token1] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(794), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), }, - [704] = { - [sym_FnProto] = STATE(719), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(941), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [696] = { + [sym_FnProto] = STATE(1628), + [sym_ErrorUnionExpr] = STATE(1825), + [sym_SuffixExpr] = STATE(1867), + [sym__PrimaryTypeExpr] = STATE(1628), + [sym_ContainerDecl] = STATE(1628), + [sym_ErrorSetDecl] = STATE(1628), + [sym_GroupedExpr] = STATE(1628), + [sym_IfTypeExpr] = STATE(1628), + [sym_LabeledTypeExpr] = STATE(1628), + [sym_LoopTypeExpr] = STATE(1786), + [sym_ForTypeExpr] = STATE(1778), + [sym_WhileTypeExpr] = STATE(1778), + [sym_SwitchExpr] = STATE(1628), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1628), + [sym_FLOAT] = STATE(1628), + [sym_INTEGER] = STATE(1628), + [sym_STRINGLITERALSINGLE] = STATE(1628), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1628), + [sym_IDENTIFIER] = STATE(1625), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(1142), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1144), + [anon_sym_null] = ACTIONS(1144), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1144), + [anon_sym_undefined] = ACTIONS(1144), + [anon_sym_unreachable] = ACTIONS(1144), + [sym_BuildinTypeExpr] = ACTIONS(1144), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [697] = { + [sym_FnProto] = STATE(716), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(942), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(717), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), + [anon_sym_inline] = ACTIONS(928), [anon_sym_fn] = ACTIONS(117), [anon_sym_async] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -76541,44 +76039,198 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [705] = { - [sym_FnProto] = STATE(1632), - [sym_ErrorUnionExpr] = STATE(1834), - [sym_SuffixExpr] = STATE(1809), - [sym__PrimaryTypeExpr] = STATE(1632), - [sym_ContainerDecl] = STATE(1632), - [sym_ErrorSetDecl] = STATE(1632), - [sym_GroupedExpr] = STATE(1632), - [sym_IfTypeExpr] = STATE(1632), - [sym_LabeledTypeExpr] = STATE(1632), - [sym_LoopTypeExpr] = STATE(1802), + [698] = { + [sym_FnProto] = STATE(1639), + [sym_ErrorUnionExpr] = STATE(1825), + [sym_SuffixExpr] = STATE(1812), + [sym__PrimaryTypeExpr] = STATE(1639), + [sym_ContainerDecl] = STATE(1639), + [sym_ErrorSetDecl] = STATE(1639), + [sym_GroupedExpr] = STATE(1639), + [sym_IfTypeExpr] = STATE(1639), + [sym_LabeledTypeExpr] = STATE(1639), + [sym_LoopTypeExpr] = STATE(1786), [sym_ForTypeExpr] = STATE(1778), [sym_WhileTypeExpr] = STATE(1778), - [sym_SwitchExpr] = STATE(1632), - [sym_BlockLabel] = STATE(1926), - [sym_IfPrefix] = STATE(670), - [sym_WhilePrefix] = STATE(671), - [sym_ForPrefix] = STATE(672), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1781), - [sym_ContainerDeclType] = STATE(2379), - [sym_CHAR_LITERAL] = STATE(1632), - [sym_FLOAT] = STATE(1632), - [sym_INTEGER] = STATE(1632), - [sym_STRINGLITERALSINGLE] = STATE(1632), - [sym_LINESTRING] = STATE(1632), - [sym__STRINGLITERAL] = STATE(1632), - [sym_IDENTIFIER] = STATE(1617), - [sym_BUILTINIDENTIFIER] = STATE(2293), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1678), + [sym_SwitchExpr] = STATE(1639), + [sym_BlockLabel] = STATE(1929), + [sym_IfPrefix] = STATE(672), + [sym_WhilePrefix] = STATE(673), + [sym_ForPrefix] = STATE(674), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1843), + [sym_ContainerDeclType] = STATE(2377), + [sym_CHAR_LITERAL] = STATE(1639), + [sym_FLOAT] = STATE(1639), + [sym_INTEGER] = STATE(1639), + [sym_STRINGLITERALSINGLE] = STATE(1639), + [sym_LINESTRING] = STATE(1646), + [sym__STRINGLITERAL] = STATE(1639), + [sym_IDENTIFIER] = STATE(1621), + [sym_BUILTINIDENTIFIER] = STATE(2286), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1646), + [anon_sym_comptime] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_inline] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(992), + [anon_sym_async] = ACTIONS(996), + [anon_sym_DOT] = ACTIONS(998), + [anon_sym_error] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1002), + [anon_sym_null] = ACTIONS(1002), + [anon_sym_anyframe] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1002), + [anon_sym_undefined] = ACTIONS(1002), + [anon_sym_unreachable] = ACTIONS(1002), + [sym_BuildinTypeExpr] = ACTIONS(1002), + [anon_sym_packed] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_switch] = ACTIONS(1008), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(1010), + [aux_sym_FLOAT_token1] = ACTIONS(1012), + [aux_sym_FLOAT_token2] = ACTIONS(1012), + [aux_sym_FLOAT_token3] = ACTIONS(1012), + [aux_sym_FLOAT_token4] = ACTIONS(1012), + [aux_sym_INTEGER_token1] = ACTIONS(1014), + [aux_sym_INTEGER_token2] = ACTIONS(1014), + [aux_sym_INTEGER_token3] = ACTIONS(1016), + [aux_sym_INTEGER_token4] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1020), + [aux_sym_IDENTIFIER_token1] = ACTIONS(1022), + [anon_sym_AT] = ACTIONS(1024), + }, + [699] = { + [sym_FnProto] = STATE(941), + [sym_ErrorUnionExpr] = STATE(1121), + [sym_SuffixExpr] = STATE(1249), + [sym__PrimaryTypeExpr] = STATE(941), + [sym_ContainerDecl] = STATE(941), + [sym_ErrorSetDecl] = STATE(941), + [sym_GroupedExpr] = STATE(941), + [sym_IfTypeExpr] = STATE(941), + [sym_LabeledTypeExpr] = STATE(941), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(941), + [sym_BlockLabel] = STATE(1933), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(941), + [sym_FLOAT] = STATE(941), + [sym_INTEGER] = STATE(941), + [sym_STRINGLITERALSINGLE] = STATE(941), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(941), + [sym_IDENTIFIER] = STATE(925), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(187), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(193), + [anon_sym_null] = ACTIONS(193), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(193), + [anon_sym_undefined] = ACTIONS(193), + [anon_sym_unreachable] = ACTIONS(193), + [sym_BuildinTypeExpr] = ACTIONS(193), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), + }, + [700] = { + [sym_FnProto] = STATE(1626), + [sym_ErrorUnionExpr] = STATE(1692), + [sym_SuffixExpr] = STATE(1764), + [sym__PrimaryTypeExpr] = STATE(1626), + [sym_ContainerDecl] = STATE(1626), + [sym_ErrorSetDecl] = STATE(1626), + [sym_GroupedExpr] = STATE(1626), + [sym_IfTypeExpr] = STATE(1626), + [sym_LabeledTypeExpr] = STATE(1626), + [sym_LoopTypeExpr] = STATE(1691), + [sym_ForTypeExpr] = STATE(1715), + [sym_WhileTypeExpr] = STATE(1715), + [sym_SwitchExpr] = STATE(1626), + [sym_BlockLabel] = STATE(1931), + [sym_IfPrefix] = STATE(550), + [sym_WhilePrefix] = STATE(667), + [sym_ForPrefix] = STATE(548), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1714), + [sym_ContainerDeclType] = STATE(2351), + [sym_CHAR_LITERAL] = STATE(1626), + [sym_FLOAT] = STATE(1626), + [sym_INTEGER] = STATE(1626), + [sym_STRINGLITERALSINGLE] = STATE(1626), + [sym_LINESTRING] = STATE(1635), + [sym__STRINGLITERAL] = STATE(1626), + [sym_IDENTIFIER] = STATE(1619), + [sym_BUILTINIDENTIFIER] = STATE(2271), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1635), [anon_sym_comptime] = ACTIONS(884), [anon_sym_extern] = ACTIONS(886), [anon_sym_inline] = ACTIONS(888), @@ -76618,58 +76270,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(914), [aux_sym_INTEGER_token4] = ACTIONS(914), [anon_sym_DQUOTE] = ACTIONS(916), - [aux_sym_LINESTRING_token1] = ACTIONS(918), + [anon_sym_BSLASH_BSLASH] = ACTIONS(918), [aux_sym_IDENTIFIER_token1] = ACTIONS(920), [anon_sym_AT] = ACTIONS(922), }, - [706] = { - [sym_FnProto] = STATE(720), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [701] = { + [sym_FnProto] = STATE(716), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(951), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(721), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(800), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(61), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -76695,61 +76347,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [707] = { - [sym_FnProto] = STATE(720), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1923), - [sym_IfPrefix] = STATE(652), - [sym_WhilePrefix] = STATE(650), - [sym_ForPrefix] = STATE(645), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(1290), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(866), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(868), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_async] = ACTIONS(838), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [702] = { + [sym_FnProto] = STATE(1296), + [sym_ErrorUnionExpr] = STATE(1380), + [sym_SuffixExpr] = STATE(1607), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), + [sym_WhilePrefix] = STATE(614), + [sym_ForPrefix] = STATE(616), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(301), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -76762,71 +76414,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [708] = { - [sym_FnProto] = STATE(1618), - [sym_ErrorUnionExpr] = STATE(1700), - [sym_SuffixExpr] = STATE(1761), - [sym__PrimaryTypeExpr] = STATE(1618), - [sym_ContainerDecl] = STATE(1618), - [sym_ErrorSetDecl] = STATE(1618), - [sym_GroupedExpr] = STATE(1618), - [sym_IfTypeExpr] = STATE(1618), - [sym_LabeledTypeExpr] = STATE(1618), - [sym_LoopTypeExpr] = STATE(1736), - [sym_ForTypeExpr] = STATE(1735), - [sym_WhileTypeExpr] = STATE(1735), - [sym_SwitchExpr] = STATE(1618), - [sym_BlockLabel] = STATE(1924), - [sym_IfPrefix] = STATE(551), - [sym_WhilePrefix] = STATE(692), - [sym_ForPrefix] = STATE(691), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1734), - [sym_ContainerDeclType] = STATE(2319), - [sym_CHAR_LITERAL] = STATE(1618), - [sym_FLOAT] = STATE(1618), - [sym_INTEGER] = STATE(1618), - [sym_STRINGLITERALSINGLE] = STATE(1618), - [sym_LINESTRING] = STATE(1618), - [sym__STRINGLITERAL] = STATE(1618), - [sym_IDENTIFIER] = STATE(1615), - [sym_BUILTINIDENTIFIER] = STATE(2239), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1642), - [anon_sym_comptime] = ACTIONS(950), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_inline] = ACTIONS(954), - [anon_sym_fn] = ACTIONS(956), - [anon_sym_async] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_error] = ACTIONS(964), - [anon_sym_false] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_anyframe] = ACTIONS(968), - [anon_sym_true] = ACTIONS(966), - [anon_sym_undefined] = ACTIONS(966), - [anon_sym_unreachable] = ACTIONS(966), - [sym_BuildinTypeExpr] = ACTIONS(966), - [anon_sym_packed] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_switch] = ACTIONS(972), + [703] = { + [sym_FnProto] = STATE(1296), + [sym_ErrorUnionExpr] = STATE(1380), + [sym_SuffixExpr] = STATE(1561), + [sym__PrimaryTypeExpr] = STATE(1296), + [sym_ContainerDecl] = STATE(1296), + [sym_ErrorSetDecl] = STATE(1296), + [sym_GroupedExpr] = STATE(1296), + [sym_IfTypeExpr] = STATE(1296), + [sym_LabeledTypeExpr] = STATE(1296), + [sym_LoopTypeExpr] = STATE(1384), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1296), + [sym_BlockLabel] = STATE(1939), + [sym_IfPrefix] = STATE(634), + [sym_WhilePrefix] = STATE(635), + [sym_ForPrefix] = STATE(636), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1296), + [sym_FLOAT] = STATE(1296), + [sym_INTEGER] = STATE(1296), + [sym_STRINGLITERALSINGLE] = STATE(1296), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1296), + [sym_IDENTIFIER] = STATE(1277), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(219), + [anon_sym_inline] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(223), + [anon_sym_async] = ACTIONS(237), + [anon_sym_DOT] = ACTIONS(578), + [anon_sym_error] = ACTIONS(241), + [anon_sym_false] = ACTIONS(243), + [anon_sym_null] = ACTIONS(243), + [anon_sym_anyframe] = ACTIONS(245), + [anon_sym_true] = ACTIONS(243), + [anon_sym_undefined] = ACTIONS(243), + [anon_sym_unreachable] = ACTIONS(243), + [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_packed] = ACTIONS(219), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_switch] = ACTIONS(249), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -76839,68 +76491,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(974), - [aux_sym_FLOAT_token1] = ACTIONS(976), - [aux_sym_FLOAT_token2] = ACTIONS(976), - [aux_sym_FLOAT_token3] = ACTIONS(976), - [aux_sym_FLOAT_token4] = ACTIONS(976), - [aux_sym_INTEGER_token1] = ACTIONS(978), - [aux_sym_INTEGER_token2] = ACTIONS(978), - [aux_sym_INTEGER_token3] = ACTIONS(980), - [aux_sym_INTEGER_token4] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [aux_sym_LINESTRING_token1] = ACTIONS(984), - [aux_sym_IDENTIFIER_token1] = ACTIONS(986), - [anon_sym_AT] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(253), + [aux_sym_FLOAT_token1] = ACTIONS(255), + [aux_sym_FLOAT_token2] = ACTIONS(255), + [aux_sym_FLOAT_token3] = ACTIONS(255), + [aux_sym_FLOAT_token4] = ACTIONS(255), + [aux_sym_INTEGER_token1] = ACTIONS(257), + [aux_sym_INTEGER_token2] = ACTIONS(257), + [aux_sym_INTEGER_token3] = ACTIONS(259), + [aux_sym_INTEGER_token4] = ACTIONS(259), + [anon_sym_DQUOTE] = ACTIONS(261), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), + [aux_sym_IDENTIFIER_token1] = ACTIONS(265), + [anon_sym_AT] = ACTIONS(267), }, - [709] = { - [sym_FnProto] = STATE(720), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), + [704] = { + [sym_FnProto] = STATE(716), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(1558), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), - [sym_BlockLabel] = STATE(1929), - [sym_IfPrefix] = STATE(660), - [sym_WhilePrefix] = STATE(674), - [sym_ForPrefix] = STATE(677), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(924), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(926), - [anon_sym_fn] = ACTIONS(117), - [anon_sym_async] = ACTIONS(554), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(283), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), + [anon_sym_false] = ACTIONS(67), + [anon_sym_null] = ACTIONS(67), [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), + [anon_sym_true] = ACTIONS(67), + [anon_sym_undefined] = ACTIONS(67), + [anon_sym_unreachable] = ACTIONS(67), + [sym_BuildinTypeExpr] = ACTIONS(67), [anon_sym_packed] = ACTIONS(39), [anon_sym_LPAREN] = ACTIONS(71), [anon_sym_switch] = ACTIONS(73), @@ -76926,61 +76578,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, - [710] = { - [sym_FnProto] = STATE(720), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(778), - [sym__PrimaryTypeExpr] = STATE(720), - [sym_ContainerDecl] = STATE(720), - [sym_ErrorSetDecl] = STATE(720), - [sym_GroupedExpr] = STATE(720), - [sym_IfTypeExpr] = STATE(720), - [sym_LabeledTypeExpr] = STATE(720), - [sym_LoopTypeExpr] = STATE(802), - [sym_ForTypeExpr] = STATE(801), - [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(720), + [705] = { + [sym_FnProto] = STATE(936), + [sym_ErrorUnionExpr] = STATE(1121), + [sym_SuffixExpr] = STATE(1189), + [sym__PrimaryTypeExpr] = STATE(936), + [sym_ContainerDecl] = STATE(936), + [sym_ErrorSetDecl] = STATE(936), + [sym_GroupedExpr] = STATE(936), + [sym_IfTypeExpr] = STATE(936), + [sym_LabeledTypeExpr] = STATE(936), + [sym_LoopTypeExpr] = STATE(1177), + [sym_ForTypeExpr] = STATE(1130), + [sym_WhileTypeExpr] = STATE(1130), + [sym_SwitchExpr] = STATE(936), [sym_BlockLabel] = STATE(1933), - [sym_IfPrefix] = STATE(578), - [sym_WhilePrefix] = STATE(577), - [sym_ForPrefix] = STATE(576), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(720), - [sym_FLOAT] = STATE(720), - [sym_INTEGER] = STATE(720), - [sym_STRINGLITERALSINGLE] = STATE(720), - [sym_LINESTRING] = STATE(720), - [sym__STRINGLITERAL] = STATE(720), - [sym_IDENTIFIER] = STATE(716), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(940), - [anon_sym_fn] = ACTIONS(43), - [anon_sym_async] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_error] = ACTIONS(65), - [anon_sym_false] = ACTIONS(556), - [anon_sym_null] = ACTIONS(556), - [anon_sym_anyframe] = ACTIONS(69), - [anon_sym_true] = ACTIONS(556), - [anon_sym_undefined] = ACTIONS(556), - [anon_sym_unreachable] = ACTIONS(556), - [sym_BuildinTypeExpr] = ACTIONS(556), - [anon_sym_packed] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(71), - [anon_sym_switch] = ACTIONS(73), + [sym_IfPrefix] = STATE(624), + [sym_WhilePrefix] = STATE(617), + [sym_ForPrefix] = STATE(615), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1132), + [sym_ContainerDeclType] = STATE(2332), + [sym_CHAR_LITERAL] = STATE(936), + [sym_FLOAT] = STATE(936), + [sym_INTEGER] = STATE(936), + [sym_STRINGLITERALSINGLE] = STATE(936), + [sym_LINESTRING] = STATE(952), + [sym__STRINGLITERAL] = STATE(936), + [sym_IDENTIFIER] = STATE(912), + [sym_BUILTINIDENTIFIER] = STATE(2266), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(952), + [anon_sym_comptime] = ACTIONS(962), + [anon_sym_extern] = ACTIONS(197), + [anon_sym_inline] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(650), + [anon_sym_async] = ACTIONS(832), + [anon_sym_DOT] = ACTIONS(189), + [anon_sym_error] = ACTIONS(191), + [anon_sym_false] = ACTIONS(834), + [anon_sym_null] = ACTIONS(834), + [anon_sym_anyframe] = ACTIONS(195), + [anon_sym_true] = ACTIONS(834), + [anon_sym_undefined] = ACTIONS(834), + [anon_sym_unreachable] = ACTIONS(834), + [sym_BuildinTypeExpr] = ACTIONS(834), + [anon_sym_packed] = ACTIONS(197), + [anon_sym_LPAREN] = ACTIONS(199), + [anon_sym_switch] = ACTIONS(201), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -76993,68 +76645,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(97), - [aux_sym_FLOAT_token1] = ACTIONS(99), - [aux_sym_FLOAT_token2] = ACTIONS(99), - [aux_sym_FLOAT_token3] = ACTIONS(99), - [aux_sym_FLOAT_token4] = ACTIONS(99), - [aux_sym_INTEGER_token1] = ACTIONS(101), - [aux_sym_INTEGER_token2] = ACTIONS(101), - [aux_sym_INTEGER_token3] = ACTIONS(103), - [aux_sym_INTEGER_token4] = ACTIONS(103), - [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), - [aux_sym_IDENTIFIER_token1] = ACTIONS(109), - [anon_sym_AT] = ACTIONS(111), + [anon_sym_SQUOTE] = ACTIONS(205), + [aux_sym_FLOAT_token1] = ACTIONS(207), + [aux_sym_FLOAT_token2] = ACTIONS(207), + [aux_sym_FLOAT_token3] = ACTIONS(207), + [aux_sym_FLOAT_token4] = ACTIONS(207), + [aux_sym_INTEGER_token1] = ACTIONS(209), + [aux_sym_INTEGER_token2] = ACTIONS(209), + [aux_sym_INTEGER_token3] = ACTIONS(211), + [aux_sym_INTEGER_token4] = ACTIONS(211), + [anon_sym_DQUOTE] = ACTIONS(213), + [anon_sym_BSLASH_BSLASH] = ACTIONS(215), + [aux_sym_IDENTIFIER_token1] = ACTIONS(652), + [anon_sym_AT] = ACTIONS(654), }, - [711] = { - [sym_FnProto] = STATE(1303), - [sym_ErrorUnionExpr] = STATE(1373), - [sym_SuffixExpr] = STATE(1364), - [sym__PrimaryTypeExpr] = STATE(1303), - [sym_ContainerDecl] = STATE(1303), - [sym_ErrorSetDecl] = STATE(1303), - [sym_GroupedExpr] = STATE(1303), - [sym_IfTypeExpr] = STATE(1303), - [sym_LabeledTypeExpr] = STATE(1303), + [706] = { + [sym_FnProto] = STATE(1304), + [sym_ErrorUnionExpr] = STATE(1380), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1303), - [sym_BlockLabel] = STATE(1930), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1939), [sym_IfPrefix] = STATE(634), [sym_WhilePrefix] = STATE(635), [sym_ForPrefix] = STATE(636), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1303), - [sym_FLOAT] = STATE(1303), - [sym_INTEGER] = STATE(1303), - [sym_STRINGLITERALSINGLE] = STATE(1303), - [sym_LINESTRING] = STATE(1303), - [sym__STRINGLITERAL] = STATE(1303), - [sym_IDENTIFIER] = STATE(1275), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(944), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(970), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(946), + [anon_sym_inline] = ACTIONS(972), [anon_sym_fn] = ACTIONS(223), - [anon_sym_async] = ACTIONS(776), + [anon_sym_async] = ACTIONS(780), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(778), - [anon_sym_null] = ACTIONS(778), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(778), - [anon_sym_undefined] = ACTIONS(778), - [anon_sym_unreachable] = ACTIONS(778), - [sym_BuildinTypeExpr] = ACTIONS(778), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -77080,61 +76732,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [712] = { - [sym_FnProto] = STATE(943), - [sym_ErrorUnionExpr] = STATE(1118), - [sym_SuffixExpr] = STATE(1244), - [sym__PrimaryTypeExpr] = STATE(943), - [sym_ContainerDecl] = STATE(943), - [sym_ErrorSetDecl] = STATE(943), - [sym_GroupedExpr] = STATE(943), - [sym_IfTypeExpr] = STATE(943), - [sym_LabeledTypeExpr] = STATE(943), - [sym_LoopTypeExpr] = STATE(1139), - [sym_ForTypeExpr] = STATE(1200), - [sym_WhileTypeExpr] = STATE(1200), - [sym_SwitchExpr] = STATE(943), - [sym_BlockLabel] = STATE(1928), - [sym_IfPrefix] = STATE(583), - [sym_WhilePrefix] = STATE(582), - [sym_ForPrefix] = STATE(575), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1114), - [sym_ContainerDeclType] = STATE(2320), - [sym_CHAR_LITERAL] = STATE(943), - [sym_FLOAT] = STATE(943), - [sym_INTEGER] = STATE(943), - [sym_STRINGLITERALSINGLE] = STATE(943), - [sym_LINESTRING] = STATE(943), - [sym__STRINGLITERAL] = STATE(943), - [sym_IDENTIFIER] = STATE(919), - [sym_BUILTINIDENTIFIER] = STATE(2280), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(985), - [anon_sym_comptime] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(197), - [anon_sym_inline] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(702), - [anon_sym_async] = ACTIONS(187), - [anon_sym_DOT] = ACTIONS(189), - [anon_sym_error] = ACTIONS(191), - [anon_sym_false] = ACTIONS(193), - [anon_sym_null] = ACTIONS(193), - [anon_sym_anyframe] = ACTIONS(195), - [anon_sym_true] = ACTIONS(193), - [anon_sym_undefined] = ACTIONS(193), - [anon_sym_unreachable] = ACTIONS(193), - [sym_BuildinTypeExpr] = ACTIONS(193), - [anon_sym_packed] = ACTIONS(197), - [anon_sym_LPAREN] = ACTIONS(199), - [anon_sym_switch] = ACTIONS(201), + [707] = { + [sym_FnProto] = STATE(915), + [sym_ErrorUnionExpr] = STATE(1104), + [sym_SuffixExpr] = STATE(1036), + [sym__PrimaryTypeExpr] = STATE(915), + [sym_ContainerDecl] = STATE(915), + [sym_ErrorSetDecl] = STATE(915), + [sym_GroupedExpr] = STATE(915), + [sym_IfTypeExpr] = STATE(915), + [sym_LabeledTypeExpr] = STATE(915), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(915), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(915), + [sym_FLOAT] = STATE(915), + [sym_INTEGER] = STATE(915), + [sym_STRINGLITERALSINGLE] = STATE(915), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(915), + [sym_IDENTIFIER] = STATE(902), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(812), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(814), + [anon_sym_null] = ACTIONS(814), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(814), + [anon_sym_undefined] = ACTIONS(814), + [anon_sym_unreachable] = ACTIONS(814), + [sym_BuildinTypeExpr] = ACTIONS(814), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), [anon_sym_LBRACK] = ACTIONS(77), [anon_sym_if] = ACTIONS(876), [anon_sym_while] = ACTIONS(878), @@ -77147,68 +76799,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(91), [anon_sym_union] = ACTIONS(93), [sym_line_comment] = ACTIONS(95), - [anon_sym_SQUOTE] = ACTIONS(205), - [aux_sym_FLOAT_token1] = ACTIONS(207), - [aux_sym_FLOAT_token2] = ACTIONS(207), - [aux_sym_FLOAT_token3] = ACTIONS(207), - [aux_sym_FLOAT_token4] = ACTIONS(207), - [aux_sym_INTEGER_token1] = ACTIONS(209), - [aux_sym_INTEGER_token2] = ACTIONS(209), - [aux_sym_INTEGER_token3] = ACTIONS(211), - [aux_sym_INTEGER_token4] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [aux_sym_LINESTRING_token1] = ACTIONS(215), - [aux_sym_IDENTIFIER_token1] = ACTIONS(704), - [anon_sym_AT] = ACTIONS(706), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), }, - [713] = { - [sym_FnProto] = STATE(1294), - [sym_ErrorUnionExpr] = STATE(1373), - [sym_SuffixExpr] = STATE(1603), - [sym__PrimaryTypeExpr] = STATE(1294), - [sym_ContainerDecl] = STATE(1294), - [sym_ErrorSetDecl] = STATE(1294), - [sym_GroupedExpr] = STATE(1294), - [sym_IfTypeExpr] = STATE(1294), - [sym_LabeledTypeExpr] = STATE(1294), + [708] = { + [sym_FnProto] = STATE(717), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1935), + [sym_IfPrefix] = STATE(680), + [sym_WhilePrefix] = STATE(693), + [sym_ForPrefix] = STATE(695), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(926), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(928), + [anon_sym_fn] = ACTIONS(117), + [anon_sym_async] = ACTIONS(542), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [709] = { + [sym_FnProto] = STATE(717), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1937), + [sym_IfPrefix] = STATE(592), + [sym_WhilePrefix] = STATE(591), + [sym_ForPrefix] = STATE(558), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(934), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(273), + [anon_sym_async] = ACTIONS(806), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [710] = { + [sym_FnProto] = STATE(922), + [sym_ErrorUnionExpr] = STATE(1104), + [sym_SuffixExpr] = STATE(1245), + [sym__PrimaryTypeExpr] = STATE(922), + [sym_ContainerDecl] = STATE(922), + [sym_ErrorSetDecl] = STATE(922), + [sym_GroupedExpr] = STATE(922), + [sym_IfTypeExpr] = STATE(922), + [sym_LabeledTypeExpr] = STATE(922), + [sym_LoopTypeExpr] = STATE(1113), + [sym_ForTypeExpr] = STATE(1112), + [sym_WhileTypeExpr] = STATE(1112), + [sym_SwitchExpr] = STATE(922), + [sym_BlockLabel] = STATE(1938), + [sym_IfPrefix] = STATE(567), + [sym_WhilePrefix] = STATE(569), + [sym_ForPrefix] = STATE(571), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1111), + [sym_ContainerDeclType] = STATE(2366), + [sym_CHAR_LITERAL] = STATE(922), + [sym_FLOAT] = STATE(922), + [sym_INTEGER] = STATE(922), + [sym_STRINGLITERALSINGLE] = STATE(922), + [sym_LINESTRING] = STATE(940), + [sym__STRINGLITERAL] = STATE(922), + [sym_IDENTIFIER] = STATE(869), + [sym_BUILTINIDENTIFIER] = STATE(2269), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(940), + [anon_sym_comptime] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(155), + [anon_sym_inline] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(792), + [anon_sym_async] = ACTIONS(145), + [anon_sym_DOT] = ACTIONS(147), + [anon_sym_error] = ACTIONS(149), + [anon_sym_false] = ACTIONS(151), + [anon_sym_null] = ACTIONS(151), + [anon_sym_anyframe] = ACTIONS(153), + [anon_sym_true] = ACTIONS(151), + [anon_sym_undefined] = ACTIONS(151), + [anon_sym_unreachable] = ACTIONS(151), + [sym_BuildinTypeExpr] = ACTIONS(151), + [anon_sym_packed] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_switch] = ACTIONS(159), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(163), + [aux_sym_FLOAT_token1] = ACTIONS(165), + [aux_sym_FLOAT_token2] = ACTIONS(165), + [aux_sym_FLOAT_token3] = ACTIONS(165), + [aux_sym_FLOAT_token4] = ACTIONS(165), + [aux_sym_INTEGER_token1] = ACTIONS(167), + [aux_sym_INTEGER_token2] = ACTIONS(167), + [aux_sym_INTEGER_token3] = ACTIONS(169), + [aux_sym_INTEGER_token4] = ACTIONS(169), + [anon_sym_DQUOTE] = ACTIONS(171), + [anon_sym_BSLASH_BSLASH] = ACTIONS(173), + [aux_sym_IDENTIFIER_token1] = ACTIONS(794), + [anon_sym_AT] = ACTIONS(796), + }, + [711] = { + [sym_FnProto] = STATE(717), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1936), + [sym_IfPrefix] = STATE(579), + [sym_WhilePrefix] = STATE(578), + [sym_ForPrefix] = STATE(577), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(720), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(940), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(43), + [anon_sym_async] = ACTIONS(702), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [712] = { + [sym_FnProto] = STATE(1304), + [sym_ErrorUnionExpr] = STATE(1380), + [sym_SuffixExpr] = STATE(1391), + [sym__PrimaryTypeExpr] = STATE(1304), + [sym_ContainerDecl] = STATE(1304), + [sym_ErrorSetDecl] = STATE(1304), + [sym_GroupedExpr] = STATE(1304), + [sym_IfTypeExpr] = STATE(1304), + [sym_LabeledTypeExpr] = STATE(1304), [sym_LoopTypeExpr] = STATE(1384), - [sym_ForTypeExpr] = STATE(1385), - [sym_WhileTypeExpr] = STATE(1385), - [sym_SwitchExpr] = STATE(1294), - [sym_BlockLabel] = STATE(1931), - [sym_IfPrefix] = STATE(612), + [sym_ForTypeExpr] = STATE(1381), + [sym_WhileTypeExpr] = STATE(1381), + [sym_SwitchExpr] = STATE(1304), + [sym_BlockLabel] = STATE(1932), + [sym_IfPrefix] = STATE(611), [sym_WhilePrefix] = STATE(614), [sym_ForPrefix] = STATE(616), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(1387), - [sym_ContainerDeclType] = STATE(2364), - [sym_CHAR_LITERAL] = STATE(1294), - [sym_FLOAT] = STATE(1294), - [sym_INTEGER] = STATE(1294), - [sym_STRINGLITERALSINGLE] = STATE(1294), - [sym_LINESTRING] = STATE(1294), - [sym__STRINGLITERAL] = STATE(1294), - [sym_IDENTIFIER] = STATE(1279), - [sym_BUILTINIDENTIFIER] = STATE(2298), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(1330), - [anon_sym_comptime] = ACTIONS(1032), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(1378), + [sym_ContainerDeclType] = STATE(2376), + [sym_CHAR_LITERAL] = STATE(1304), + [sym_FLOAT] = STATE(1304), + [sym_INTEGER] = STATE(1304), + [sym_STRINGLITERALSINGLE] = STATE(1304), + [sym_LINESTRING] = STATE(1313), + [sym__STRINGLITERAL] = STATE(1304), + [sym_IDENTIFIER] = STATE(1282), + [sym_BUILTINIDENTIFIER] = STATE(2311), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(1313), + [anon_sym_comptime] = ACTIONS(1030), [anon_sym_extern] = ACTIONS(219), - [anon_sym_inline] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(273), - [anon_sym_async] = ACTIONS(283), + [anon_sym_inline] = ACTIONS(1032), + [anon_sym_fn] = ACTIONS(291), + [anon_sym_async] = ACTIONS(802), [anon_sym_DOT] = ACTIONS(578), [anon_sym_error] = ACTIONS(241), - [anon_sym_false] = ACTIONS(243), - [anon_sym_null] = ACTIONS(243), + [anon_sym_false] = ACTIONS(782), + [anon_sym_null] = ACTIONS(782), [anon_sym_anyframe] = ACTIONS(245), - [anon_sym_true] = ACTIONS(243), - [anon_sym_undefined] = ACTIONS(243), - [anon_sym_unreachable] = ACTIONS(243), - [sym_BuildinTypeExpr] = ACTIONS(243), + [anon_sym_true] = ACTIONS(782), + [anon_sym_undefined] = ACTIONS(782), + [anon_sym_unreachable] = ACTIONS(782), + [sym_BuildinTypeExpr] = ACTIONS(782), [anon_sym_packed] = ACTIONS(219), [anon_sym_LPAREN] = ACTIONS(247), [anon_sym_switch] = ACTIONS(249), @@ -77234,50 +77194,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(259), [aux_sym_INTEGER_token4] = ACTIONS(259), [anon_sym_DQUOTE] = ACTIONS(261), - [aux_sym_LINESTRING_token1] = ACTIONS(263), + [anon_sym_BSLASH_BSLASH] = ACTIONS(263), [aux_sym_IDENTIFIER_token1] = ACTIONS(265), [anon_sym_AT] = ACTIONS(267), }, - [714] = { - [sym_FnProto] = STATE(719), - [sym_ErrorUnionExpr] = STATE(789), - [sym_SuffixExpr] = STATE(1555), - [sym__PrimaryTypeExpr] = STATE(719), - [sym_ContainerDecl] = STATE(719), - [sym_ErrorSetDecl] = STATE(719), - [sym_GroupedExpr] = STATE(719), - [sym_IfTypeExpr] = STATE(719), - [sym_LabeledTypeExpr] = STATE(719), + [713] = { + [sym_FnProto] = STATE(716), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(1606), + [sym__PrimaryTypeExpr] = STATE(716), + [sym_ContainerDecl] = STATE(716), + [sym_ErrorSetDecl] = STATE(716), + [sym_GroupedExpr] = STATE(716), + [sym_IfTypeExpr] = STATE(716), + [sym_LabeledTypeExpr] = STATE(716), [sym_LoopTypeExpr] = STATE(802), [sym_ForTypeExpr] = STATE(801), [sym_WhileTypeExpr] = STATE(801), - [sym_SwitchExpr] = STATE(719), - [sym_BlockLabel] = STATE(1925), - [sym_IfPrefix] = STATE(563), - [sym_WhilePrefix] = STATE(562), - [sym_ForPrefix] = STATE(561), - [sym_PrefixTypeOp] = STATE(1273), - [sym_SliceTypeStart] = STATE(1271), - [sym_PtrTypeStart] = STATE(1276), - [sym_ArrayTypeStart] = STATE(1397), - [sym__ContainerDeclAuto] = STATE(758), - [sym_ContainerDeclType] = STATE(2355), - [sym_CHAR_LITERAL] = STATE(719), - [sym_FLOAT] = STATE(719), - [sym_INTEGER] = STATE(719), - [sym_STRINGLITERALSINGLE] = STATE(719), - [sym_LINESTRING] = STATE(719), - [sym__STRINGLITERAL] = STATE(719), - [sym_IDENTIFIER] = STATE(1299), - [sym_BUILTINIDENTIFIER] = STATE(2285), - [aux_sym__TypeExpr_repeat1] = STATE(1273), - [aux_sym_LINESTRING_repeat1] = STATE(745), - [anon_sym_comptime] = ACTIONS(930), + [sym_SwitchExpr] = STATE(716), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(716), + [sym_FLOAT] = STATE(716), + [sym_INTEGER] = STATE(716), + [sym_STRINGLITERALSINGLE] = STATE(716), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(716), + [sym_IDENTIFIER] = STATE(1302), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), [anon_sym_extern] = ACTIONS(39), - [anon_sym_inline] = ACTIONS(932), - [anon_sym_fn] = ACTIONS(289), - [anon_sym_async] = ACTIONS(299), - [anon_sym_DOT] = ACTIONS(301), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(317), + [anon_sym_DOT] = ACTIONS(285), [anon_sym_error] = ACTIONS(65), [anon_sym_false] = ACTIONS(67), [anon_sym_null] = ACTIONS(67), @@ -77311,29 +77271,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_INTEGER_token3] = ACTIONS(103), [aux_sym_INTEGER_token4] = ACTIONS(103), [anon_sym_DQUOTE] = ACTIONS(105), - [aux_sym_LINESTRING_token1] = ACTIONS(107), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), + [aux_sym_IDENTIFIER_token1] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(111), + }, + [714] = { + [sym_FnProto] = STATE(717), + [sym_ErrorUnionExpr] = STATE(832), + [sym_SuffixExpr] = STATE(819), + [sym__PrimaryTypeExpr] = STATE(717), + [sym_ContainerDecl] = STATE(717), + [sym_ErrorSetDecl] = STATE(717), + [sym_GroupedExpr] = STATE(717), + [sym_IfTypeExpr] = STATE(717), + [sym_LabeledTypeExpr] = STATE(717), + [sym_LoopTypeExpr] = STATE(802), + [sym_ForTypeExpr] = STATE(801), + [sym_WhileTypeExpr] = STATE(801), + [sym_SwitchExpr] = STATE(717), + [sym_BlockLabel] = STATE(1930), + [sym_IfPrefix] = STATE(551), + [sym_WhilePrefix] = STATE(568), + [sym_ForPrefix] = STATE(576), + [sym_PrefixTypeOp] = STATE(1284), + [sym_SliceTypeStart] = STATE(1275), + [sym_PtrTypeStart] = STATE(1279), + [sym_ArrayTypeStart] = STATE(1370), + [sym__ContainerDeclAuto] = STATE(780), + [sym_ContainerDeclType] = STATE(2334), + [sym_CHAR_LITERAL] = STATE(717), + [sym_FLOAT] = STATE(717), + [sym_INTEGER] = STATE(717), + [sym_STRINGLITERALSINGLE] = STATE(717), + [sym_LINESTRING] = STATE(728), + [sym__STRINGLITERAL] = STATE(717), + [sym_IDENTIFIER] = STATE(1297), + [sym_BUILTINIDENTIFIER] = STATE(2296), + [aux_sym__TypeExpr_repeat1] = STATE(1284), + [aux_sym__STRINGLITERAL_repeat1] = STATE(728), + [anon_sym_comptime] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(39), + [anon_sym_inline] = ACTIONS(868), + [anon_sym_fn] = ACTIONS(307), + [anon_sym_async] = ACTIONS(836), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_error] = ACTIONS(65), + [anon_sym_false] = ACTIONS(544), + [anon_sym_null] = ACTIONS(544), + [anon_sym_anyframe] = ACTIONS(69), + [anon_sym_true] = ACTIONS(544), + [anon_sym_undefined] = ACTIONS(544), + [anon_sym_unreachable] = ACTIONS(544), + [sym_BuildinTypeExpr] = ACTIONS(544), + [anon_sym_packed] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(71), + [anon_sym_switch] = ACTIONS(73), + [anon_sym_LBRACK] = ACTIONS(77), + [anon_sym_if] = ACTIONS(876), + [anon_sym_while] = ACTIONS(878), + [anon_sym_for] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(341), + [anon_sym_STAR_STAR] = ACTIONS(343), + [anon_sym_QMARK] = ACTIONS(87), + [anon_sym_struct] = ACTIONS(89), + [anon_sym_opaque] = ACTIONS(89), + [anon_sym_enum] = ACTIONS(91), + [anon_sym_union] = ACTIONS(93), + [sym_line_comment] = ACTIONS(95), + [anon_sym_SQUOTE] = ACTIONS(97), + [aux_sym_FLOAT_token1] = ACTIONS(99), + [aux_sym_FLOAT_token2] = ACTIONS(99), + [aux_sym_FLOAT_token3] = ACTIONS(99), + [aux_sym_FLOAT_token4] = ACTIONS(99), + [aux_sym_INTEGER_token1] = ACTIONS(101), + [aux_sym_INTEGER_token2] = ACTIONS(101), + [aux_sym_INTEGER_token3] = ACTIONS(103), + [aux_sym_INTEGER_token4] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), [aux_sym_IDENTIFIER_token1] = ACTIONS(109), [anon_sym_AT] = ACTIONS(111), }, [715] = { - [sym_FieldOrFnCall] = STATE(736), - [sym_SuffixOp] = STATE(754), - [sym_FnCallArguments] = STATE(741), - [aux_sym_SuffixExpr_repeat1] = STATE(736), + [sym_FieldOrFnCall] = STATE(748), + [sym_SuffixOp] = STATE(753), + [sym_FnCallArguments] = STATE(747), + [aux_sym_SuffixExpr_repeat1] = STATE(748), [anon_sym_COMMA] = ACTIONS(1196), [anon_sym_SEMI] = ACTIONS(1196), [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_COLON] = ACTIONS(1196), + [anon_sym_COLON] = ACTIONS(1200), [anon_sym_EQ] = ACTIONS(1198), [anon_sym_else] = ACTIONS(1196), [anon_sym_or] = ACTIONS(1198), [anon_sym_and] = ACTIONS(1196), [anon_sym_LBRACE] = ACTIONS(1196), [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1206), [anon_sym_RBRACK] = ACTIONS(1196), [anon_sym_linksection] = ACTIONS(1196), [anon_sym_PIPE] = ACTIONS(1198), @@ -77384,175 +77421,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1198), [anon_sym_align] = ACTIONS(1196), [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [716] = { - [sym_FieldOrFnCall] = STATE(723), + [sym_FieldOrFnCall] = STATE(743), [sym_SuffixOp] = STATE(753), - [sym_FnCallArguments] = STATE(731), - [aux_sym_SuffixExpr_repeat1] = STATE(723), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(1212), - [anon_sym_EQ] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_or] = ACTIONS(1210), - [anon_sym_and] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1208), - [anon_sym_linksection] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_EQ_GT] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1208), - [anon_sym_GT_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_EQ] = ACTIONS(1208), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1208), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_orelse] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_LT_LT_PIPE] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_PLUS_PERCENT] = ACTIONS(1210), - [anon_sym_DASH_PERCENT] = ACTIONS(1210), - [anon_sym_PLUS_PIPE] = ACTIONS(1210), - [anon_sym_DASH_PIPE] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1210), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_STAR_PERCENT] = ACTIONS(1210), - [anon_sym_STAR_PIPE] = ACTIONS(1210), - [anon_sym_align] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FnCallArguments] = STATE(742), + [aux_sym_SuffixExpr_repeat1] = STATE(743), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_or] = ACTIONS(1212), + [anon_sym_and] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1210), + [anon_sym_linksection] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_EQ_GT] = ACTIONS(1210), + [anon_sym_STAR_EQ] = ACTIONS(1210), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1210), + [anon_sym_SLASH_EQ] = ACTIONS(1210), + [anon_sym_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_PLUS_EQ] = ACTIONS(1210), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1210), + [anon_sym_DASH_EQ] = ACTIONS(1210), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1210), + [anon_sym_LT_LT_EQ] = ACTIONS(1210), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1210), + [anon_sym_GT_GT_EQ] = ACTIONS(1210), + [anon_sym_AMP_EQ] = ACTIONS(1210), + [anon_sym_CARET_EQ] = ACTIONS(1210), + [anon_sym_PIPE_EQ] = ACTIONS(1210), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym_orelse] = ACTIONS(1210), + [anon_sym_catch] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1212), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_LT_LT_PIPE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_PLUS_PERCENT] = ACTIONS(1212), + [anon_sym_DASH_PERCENT] = ACTIONS(1212), + [anon_sym_PLUS_PIPE] = ACTIONS(1212), + [anon_sym_DASH_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_STAR_STAR] = ACTIONS(1210), + [anon_sym_STAR_PERCENT] = ACTIONS(1212), + [anon_sym_STAR_PIPE] = ACTIONS(1212), + [anon_sym_align] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [717] = { - [sym_FieldOrFnCall] = STATE(743), - [sym_SuffixOp] = STATE(754), - [sym_FnCallArguments] = STATE(749), - [aux_sym_SuffixExpr_repeat1] = STATE(743), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1210), - [anon_sym_COLON] = ACTIONS(1212), - [anon_sym_EQ] = ACTIONS(1210), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_or] = ACTIONS(1210), - [anon_sym_and] = ACTIONS(1208), - [anon_sym_LBRACE] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1208), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1208), - [anon_sym_linksection] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1210), - [anon_sym_EQ_GT] = ACTIONS(1208), - [anon_sym_STAR_EQ] = ACTIONS(1208), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1208), - [anon_sym_SLASH_EQ] = ACTIONS(1208), - [anon_sym_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1208), - [anon_sym_DASH_EQ] = ACTIONS(1208), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_EQ] = ACTIONS(1208), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1208), - [anon_sym_GT_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP_EQ] = ACTIONS(1208), - [anon_sym_CARET_EQ] = ACTIONS(1208), - [anon_sym_PIPE_EQ] = ACTIONS(1208), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1208), - [anon_sym_BANG_EQ] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1210), - [anon_sym_GT] = ACTIONS(1210), - [anon_sym_LT_EQ] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_orelse] = ACTIONS(1208), - [anon_sym_catch] = ACTIONS(1208), - [anon_sym_LT_LT] = ACTIONS(1210), - [anon_sym_GT_GT] = ACTIONS(1210), - [anon_sym_LT_LT_PIPE] = ACTIONS(1210), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_PLUS_PLUS] = ACTIONS(1208), - [anon_sym_PLUS_PERCENT] = ACTIONS(1210), - [anon_sym_DASH_PERCENT] = ACTIONS(1210), - [anon_sym_PLUS_PIPE] = ACTIONS(1210), - [anon_sym_DASH_PIPE] = ACTIONS(1210), - [anon_sym_PIPE_PIPE] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1210), - [anon_sym_PERCENT] = ACTIONS(1210), - [anon_sym_STAR_STAR] = ACTIONS(1208), - [anon_sym_STAR_PERCENT] = ACTIONS(1210), - [anon_sym_STAR_PIPE] = ACTIONS(1210), - [anon_sym_align] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(724), + [sym_SuffixOp] = STATE(751), + [sym_FnCallArguments] = STATE(730), + [aux_sym_SuffixExpr_repeat1] = STATE(724), + [anon_sym_COMMA] = ACTIONS(1210), + [anon_sym_SEMI] = ACTIONS(1210), + [anon_sym_BANG] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1210), + [anon_sym_EQ] = ACTIONS(1212), + [anon_sym_else] = ACTIONS(1210), + [anon_sym_or] = ACTIONS(1212), + [anon_sym_and] = ACTIONS(1210), + [anon_sym_LBRACE] = ACTIONS(1210), + [anon_sym_RBRACE] = ACTIONS(1210), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1210), + [anon_sym_linksection] = ACTIONS(1210), + [anon_sym_PIPE] = ACTIONS(1212), + [anon_sym_STAR] = ACTIONS(1212), + [anon_sym_EQ_GT] = ACTIONS(1210), + [anon_sym_STAR_EQ] = ACTIONS(1210), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1210), + [anon_sym_SLASH_EQ] = ACTIONS(1210), + [anon_sym_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_PLUS_EQ] = ACTIONS(1210), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1210), + [anon_sym_DASH_EQ] = ACTIONS(1210), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1210), + [anon_sym_LT_LT_EQ] = ACTIONS(1210), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1210), + [anon_sym_GT_GT_EQ] = ACTIONS(1210), + [anon_sym_AMP_EQ] = ACTIONS(1210), + [anon_sym_CARET_EQ] = ACTIONS(1210), + [anon_sym_PIPE_EQ] = ACTIONS(1210), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1210), + [anon_sym_EQ_EQ] = ACTIONS(1210), + [anon_sym_BANG_EQ] = ACTIONS(1210), + [anon_sym_LT] = ACTIONS(1212), + [anon_sym_GT] = ACTIONS(1212), + [anon_sym_LT_EQ] = ACTIONS(1210), + [anon_sym_GT_EQ] = ACTIONS(1210), + [anon_sym_AMP] = ACTIONS(1212), + [anon_sym_CARET] = ACTIONS(1212), + [anon_sym_orelse] = ACTIONS(1210), + [anon_sym_catch] = ACTIONS(1210), + [anon_sym_LT_LT] = ACTIONS(1212), + [anon_sym_GT_GT] = ACTIONS(1212), + [anon_sym_LT_LT_PIPE] = ACTIONS(1212), + [anon_sym_PLUS] = ACTIONS(1212), + [anon_sym_DASH] = ACTIONS(1212), + [anon_sym_PLUS_PLUS] = ACTIONS(1210), + [anon_sym_PLUS_PERCENT] = ACTIONS(1212), + [anon_sym_DASH_PERCENT] = ACTIONS(1212), + [anon_sym_PLUS_PIPE] = ACTIONS(1212), + [anon_sym_DASH_PIPE] = ACTIONS(1212), + [anon_sym_PIPE_PIPE] = ACTIONS(1210), + [anon_sym_SLASH] = ACTIONS(1212), + [anon_sym_PERCENT] = ACTIONS(1212), + [anon_sym_STAR_STAR] = ACTIONS(1210), + [anon_sym_STAR_PERCENT] = ACTIONS(1212), + [anon_sym_STAR_PIPE] = ACTIONS(1212), + [anon_sym_align] = ACTIONS(1210), + [anon_sym_DOT_DOT] = ACTIONS(1210), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [718] = { - [sym_FieldOrFnCall] = STATE(739), - [sym_SuffixOp] = STATE(754), - [sym_FnCallArguments] = STATE(740), - [aux_sym_SuffixExpr_repeat1] = STATE(739), + [sym_FieldOrFnCall] = STATE(731), + [sym_SuffixOp] = STATE(751), + [sym_FnCallArguments] = STATE(729), + [aux_sym_SuffixExpr_repeat1] = STATE(731), [anon_sym_COMMA] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1214), [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1214), [anon_sym_EQ] = ACTIONS(1216), [anon_sym_else] = ACTIONS(1214), [anon_sym_or] = ACTIONS(1216), [anon_sym_and] = ACTIONS(1214), [anon_sym_LBRACE] = ACTIONS(1214), [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1206), [anon_sym_RBRACK] = ACTIONS(1214), [anon_sym_linksection] = ACTIONS(1214), [anon_sym_PIPE] = ACTIONS(1216), @@ -77603,29 +77640,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1216), [anon_sym_align] = ACTIONS(1214), [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [719] = { - [sym_FieldOrFnCall] = STATE(748), - [sym_SuffixOp] = STATE(754), - [sym_FnCallArguments] = STATE(737), - [aux_sym_SuffixExpr_repeat1] = STATE(748), + [sym_FieldOrFnCall] = STATE(733), + [sym_SuffixOp] = STATE(751), + [sym_FnCallArguments] = STATE(732), + [aux_sym_SuffixExpr_repeat1] = STATE(733), + [anon_sym_COMMA] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1198), + [anon_sym_COLON] = ACTIONS(1200), + [anon_sym_EQ] = ACTIONS(1198), + [anon_sym_else] = ACTIONS(1196), + [anon_sym_or] = ACTIONS(1198), + [anon_sym_and] = ACTIONS(1196), + [anon_sym_LBRACE] = ACTIONS(1196), + [anon_sym_RBRACE] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1196), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1196), + [anon_sym_linksection] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1198), + [anon_sym_STAR] = ACTIONS(1198), + [anon_sym_EQ_GT] = ACTIONS(1196), + [anon_sym_STAR_EQ] = ACTIONS(1196), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1196), + [anon_sym_SLASH_EQ] = ACTIONS(1196), + [anon_sym_PERCENT_EQ] = ACTIONS(1196), + [anon_sym_PLUS_EQ] = ACTIONS(1196), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1196), + [anon_sym_DASH_EQ] = ACTIONS(1196), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1196), + [anon_sym_LT_LT_EQ] = ACTIONS(1196), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1196), + [anon_sym_GT_GT_EQ] = ACTIONS(1196), + [anon_sym_AMP_EQ] = ACTIONS(1196), + [anon_sym_CARET_EQ] = ACTIONS(1196), + [anon_sym_PIPE_EQ] = ACTIONS(1196), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1196), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1196), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1196), + [anon_sym_BANG_EQ] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1198), + [anon_sym_GT] = ACTIONS(1198), + [anon_sym_LT_EQ] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1198), + [anon_sym_CARET] = ACTIONS(1198), + [anon_sym_orelse] = ACTIONS(1196), + [anon_sym_catch] = ACTIONS(1196), + [anon_sym_LT_LT] = ACTIONS(1198), + [anon_sym_GT_GT] = ACTIONS(1198), + [anon_sym_LT_LT_PIPE] = ACTIONS(1198), + [anon_sym_PLUS] = ACTIONS(1198), + [anon_sym_DASH] = ACTIONS(1198), + [anon_sym_PLUS_PLUS] = ACTIONS(1196), + [anon_sym_PLUS_PERCENT] = ACTIONS(1198), + [anon_sym_DASH_PERCENT] = ACTIONS(1198), + [anon_sym_PLUS_PIPE] = ACTIONS(1198), + [anon_sym_DASH_PIPE] = ACTIONS(1198), + [anon_sym_PIPE_PIPE] = ACTIONS(1196), + [anon_sym_SLASH] = ACTIONS(1198), + [anon_sym_PERCENT] = ACTIONS(1198), + [anon_sym_STAR_STAR] = ACTIONS(1196), + [anon_sym_STAR_PERCENT] = ACTIONS(1198), + [anon_sym_STAR_PIPE] = ACTIONS(1198), + [anon_sym_align] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(95), + }, + [720] = { + [sym_FieldOrFnCall] = STATE(727), + [sym_SuffixOp] = STATE(751), + [sym_FnCallArguments] = STATE(725), + [aux_sym_SuffixExpr_repeat1] = STATE(727), [anon_sym_COMMA] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1218), [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1200), [anon_sym_EQ] = ACTIONS(1220), [anon_sym_else] = ACTIONS(1218), [anon_sym_or] = ACTIONS(1220), [anon_sym_and] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1206), [anon_sym_RBRACK] = ACTIONS(1218), [anon_sym_linksection] = ACTIONS(1218), [anon_sym_PIPE] = ACTIONS(1220), @@ -77676,29 +77786,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1220), [anon_sym_align] = ACTIONS(1218), [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, - [720] = { - [sym_FieldOrFnCall] = STATE(732), + [721] = { + [sym_FieldOrFnCall] = STATE(745), [sym_SuffixOp] = STATE(753), - [sym_FnCallArguments] = STATE(733), - [aux_sym_SuffixExpr_repeat1] = STATE(732), + [sym_FnCallArguments] = STATE(744), + [aux_sym_SuffixExpr_repeat1] = STATE(745), [anon_sym_COMMA] = ACTIONS(1218), [anon_sym_SEMI] = ACTIONS(1218), [anon_sym_BANG] = ACTIONS(1220), - [anon_sym_COLON] = ACTIONS(1218), + [anon_sym_COLON] = ACTIONS(1200), [anon_sym_EQ] = ACTIONS(1220), [anon_sym_else] = ACTIONS(1218), [anon_sym_or] = ACTIONS(1220), [anon_sym_and] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1218), [anon_sym_RBRACE] = ACTIONS(1218), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1206), [anon_sym_RBRACK] = ACTIONS(1218), [anon_sym_linksection] = ACTIONS(1218), [anon_sym_PIPE] = ACTIONS(1220), @@ -77749,29 +77859,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1220), [anon_sym_align] = ACTIONS(1218), [anon_sym_DOT_DOT] = ACTIONS(1218), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, - [721] = { - [sym_FieldOrFnCall] = STATE(727), + [722] = { + [sym_FieldOrFnCall] = STATE(738), [sym_SuffixOp] = STATE(753), - [sym_FnCallArguments] = STATE(734), - [aux_sym_SuffixExpr_repeat1] = STATE(727), + [sym_FnCallArguments] = STATE(746), + [aux_sym_SuffixExpr_repeat1] = STATE(738), [anon_sym_COMMA] = ACTIONS(1214), [anon_sym_SEMI] = ACTIONS(1214), [anon_sym_BANG] = ACTIONS(1216), - [anon_sym_COLON] = ACTIONS(1212), + [anon_sym_COLON] = ACTIONS(1214), [anon_sym_EQ] = ACTIONS(1216), [anon_sym_else] = ACTIONS(1214), [anon_sym_or] = ACTIONS(1216), [anon_sym_and] = ACTIONS(1214), [anon_sym_LBRACE] = ACTIONS(1214), [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1204), [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1206), [anon_sym_RBRACK] = ACTIONS(1214), [anon_sym_linksection] = ACTIONS(1214), [anon_sym_PIPE] = ACTIONS(1216), @@ -77822,87 +77932,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1216), [anon_sym_align] = ACTIONS(1214), [anon_sym_DOT_DOT] = ACTIONS(1214), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(95), - }, - [722] = { - [sym_FieldOrFnCall] = STATE(725), - [sym_SuffixOp] = STATE(753), - [sym_FnCallArguments] = STATE(724), - [aux_sym_SuffixExpr_repeat1] = STATE(725), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_COLON] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1196), - [anon_sym_or] = ACTIONS(1198), - [anon_sym_and] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1196), - [anon_sym_linksection] = ACTIONS(1196), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_EQ_GT] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_orelse] = ACTIONS(1196), - [anon_sym_catch] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_LT_LT_PIPE] = ACTIONS(1198), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_PLUS_PLUS] = ACTIONS(1196), - [anon_sym_PLUS_PERCENT] = ACTIONS(1198), - [anon_sym_DASH_PERCENT] = ACTIONS(1198), - [anon_sym_PLUS_PIPE] = ACTIONS(1198), - [anon_sym_DASH_PIPE] = ACTIONS(1198), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_STAR] = ACTIONS(1196), - [anon_sym_STAR_PERCENT] = ACTIONS(1198), - [anon_sym_STAR_PIPE] = ACTIONS(1198), - [anon_sym_align] = ACTIONS(1196), - [anon_sym_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [723] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), + [sym_LINESTRING] = STATE(723), + [aux_sym__STRINGLITERAL_repeat1] = STATE(723), [anon_sym_COMMA] = ACTIONS(1222), [anon_sym_SEMI] = ACTIONS(1222), [anon_sym_BANG] = ACTIONS(1224), @@ -77913,10 +77949,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_and] = ACTIONS(1222), [anon_sym_LBRACE] = ACTIONS(1222), [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1200), + [anon_sym_DOT] = ACTIONS(1224), [anon_sym_LPAREN] = ACTIONS(1222), [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1204), + [anon_sym_LBRACK] = ACTIONS(1222), [anon_sym_RBRACK] = ACTIONS(1222), [anon_sym_linksection] = ACTIONS(1222), [anon_sym_PIPE] = ACTIONS(1224), @@ -77967,2565 +78003,2569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_PIPE] = ACTIONS(1224), [anon_sym_align] = ACTIONS(1222), [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_DOT_STAR] = ACTIONS(1222), + [anon_sym_DOT_QMARK] = ACTIONS(1222), [sym_line_comment] = ACTIONS(95), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1226), }, [724] = { - [sym_FieldOrFnCall] = STATE(729), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(729), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_COLON] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_linksection] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_STAR_EQ] = ACTIONS(1226), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1226), - [anon_sym_SLASH_EQ] = ACTIONS(1226), - [anon_sym_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1226), - [anon_sym_DASH_EQ] = ACTIONS(1226), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1226), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_catch] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_LT_LT_PIPE] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT] = ACTIONS(1228), - [anon_sym_DASH_PERCENT] = ACTIONS(1228), - [anon_sym_PLUS_PIPE] = ACTIONS(1228), - [anon_sym_DASH_PIPE] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1226), - [anon_sym_STAR_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_PIPE] = ACTIONS(1228), - [anon_sym_align] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_linksection] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), + [anon_sym_GT_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP_EQ] = ACTIONS(1229), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_orelse] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_PIPE] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT] = ACTIONS(1231), + [anon_sym_DASH_PERCENT] = ACTIONS(1231), + [anon_sym_PLUS_PIPE] = ACTIONS(1231), + [anon_sym_DASH_PIPE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_STAR_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_PIPE] = ACTIONS(1231), + [anon_sym_align] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [725] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_COLON] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1226), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_linksection] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_STAR_EQ] = ACTIONS(1226), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1226), - [anon_sym_SLASH_EQ] = ACTIONS(1226), - [anon_sym_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1226), - [anon_sym_DASH_EQ] = ACTIONS(1226), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1226), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_catch] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_LT_LT_PIPE] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT] = ACTIONS(1228), - [anon_sym_DASH_PERCENT] = ACTIONS(1228), - [anon_sym_PLUS_PIPE] = ACTIONS(1228), - [anon_sym_DASH_PIPE] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1226), - [anon_sym_STAR_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_PIPE] = ACTIONS(1228), - [anon_sym_align] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(737), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(737), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1233), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_linksection] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_STAR_EQ] = ACTIONS(1233), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1233), + [anon_sym_SLASH_EQ] = ACTIONS(1233), + [anon_sym_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_PLUS_EQ] = ACTIONS(1233), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1233), + [anon_sym_DASH_EQ] = ACTIONS(1233), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_CARET_EQ] = ACTIONS(1233), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_orelse] = ACTIONS(1233), + [anon_sym_catch] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_LT_LT_PIPE] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_PLUS_PERCENT] = ACTIONS(1235), + [anon_sym_DASH_PERCENT] = ACTIONS(1235), + [anon_sym_PLUS_PIPE] = ACTIONS(1235), + [anon_sym_DASH_PIPE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_STAR_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_PIPE] = ACTIONS(1235), + [anon_sym_align] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [726] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_or] = ACTIONS(1232), - [anon_sym_and] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1230), - [anon_sym_RPAREN] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_linksection] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_EQ_GT] = ACTIONS(1230), - [anon_sym_STAR_EQ] = ACTIONS(1230), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1230), - [anon_sym_SLASH_EQ] = ACTIONS(1230), - [anon_sym_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_PLUS_EQ] = ACTIONS(1230), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1230), - [anon_sym_DASH_EQ] = ACTIONS(1230), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1230), - [anon_sym_LT_LT_EQ] = ACTIONS(1230), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1230), - [anon_sym_GT_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP_EQ] = ACTIONS(1230), - [anon_sym_CARET_EQ] = ACTIONS(1230), - [anon_sym_PIPE_EQ] = ACTIONS(1230), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_EQ_EQ] = ACTIONS(1230), - [anon_sym_BANG_EQ] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_orelse] = ACTIONS(1230), - [anon_sym_catch] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_LT_LT_PIPE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_PLUS_PERCENT] = ACTIONS(1232), - [anon_sym_DASH_PERCENT] = ACTIONS(1232), - [anon_sym_PLUS_PIPE] = ACTIONS(1232), - [anon_sym_DASH_PIPE] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1232), - [anon_sym_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_STAR] = ACTIONS(1230), - [anon_sym_STAR_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_PIPE] = ACTIONS(1232), - [anon_sym_align] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1237), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_linksection] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_orelse] = ACTIONS(1237), + [anon_sym_catch] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT_PIPE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_PLUS_PERCENT] = ACTIONS(1239), + [anon_sym_DASH_PERCENT] = ACTIONS(1239), + [anon_sym_PLUS_PIPE] = ACTIONS(1239), + [anon_sym_DASH_PIPE] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_STAR_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_PIPE] = ACTIONS(1239), + [anon_sym_align] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [727] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_or] = ACTIONS(1236), - [anon_sym_and] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1234), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1234), - [anon_sym_linksection] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1234), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1234), - [anon_sym_SLASH_EQ] = ACTIONS(1234), - [anon_sym_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1234), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1234), - [anon_sym_DASH_EQ] = ACTIONS(1234), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1234), - [anon_sym_LT_LT_EQ] = ACTIONS(1234), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1234), - [anon_sym_GT_GT_EQ] = ACTIONS(1234), - [anon_sym_AMP_EQ] = ACTIONS(1234), - [anon_sym_CARET_EQ] = ACTIONS(1234), - [anon_sym_PIPE_EQ] = ACTIONS(1234), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1234), - [anon_sym_BANG_EQ] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_orelse] = ACTIONS(1234), - [anon_sym_catch] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1236), - [anon_sym_LT_LT_PIPE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_PLUS_PERCENT] = ACTIONS(1236), - [anon_sym_DASH_PERCENT] = ACTIONS(1236), - [anon_sym_PLUS_PIPE] = ACTIONS(1236), - [anon_sym_DASH_PIPE] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_STAR] = ACTIONS(1234), - [anon_sym_STAR_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_PIPE] = ACTIONS(1236), - [anon_sym_align] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1243), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1241), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_linksection] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_EQ_GT] = ACTIONS(1241), + [anon_sym_STAR_EQ] = ACTIONS(1241), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1241), + [anon_sym_SLASH_EQ] = ACTIONS(1241), + [anon_sym_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1241), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1241), + [anon_sym_DASH_EQ] = ACTIONS(1241), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1241), + [anon_sym_GT_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP_EQ] = ACTIONS(1241), + [anon_sym_CARET_EQ] = ACTIONS(1241), + [anon_sym_PIPE_EQ] = ACTIONS(1241), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_orelse] = ACTIONS(1241), + [anon_sym_catch] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_LT_LT_PIPE] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_PLUS_PERCENT] = ACTIONS(1243), + [anon_sym_DASH_PERCENT] = ACTIONS(1243), + [anon_sym_PLUS_PIPE] = ACTIONS(1243), + [anon_sym_DASH_PIPE] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_STAR_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_PIPE] = ACTIONS(1243), + [anon_sym_align] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [728] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_or] = ACTIONS(1240), - [anon_sym_and] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1238), - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1238), - [anon_sym_linksection] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_STAR_EQ] = ACTIONS(1238), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1238), - [anon_sym_SLASH_EQ] = ACTIONS(1238), - [anon_sym_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1238), - [anon_sym_DASH_EQ] = ACTIONS(1238), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1238), - [anon_sym_GT_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_EQ] = ACTIONS(1238), - [anon_sym_CARET_EQ] = ACTIONS(1238), - [anon_sym_PIPE_EQ] = ACTIONS(1238), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_orelse] = ACTIONS(1238), - [anon_sym_catch] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_LT_LT_PIPE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_PLUS_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_PERCENT] = ACTIONS(1240), - [anon_sym_PLUS_PIPE] = ACTIONS(1240), - [anon_sym_DASH_PIPE] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1238), - [anon_sym_STAR_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_PIPE] = ACTIONS(1240), - [anon_sym_align] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), - [sym_line_comment] = ACTIONS(95), + [sym_LINESTRING] = STATE(723), + [aux_sym__STRINGLITERAL_repeat1] = STATE(723), + [anon_sym_COMMA] = ACTIONS(1245), + [anon_sym_SEMI] = ACTIONS(1245), + [anon_sym_BANG] = ACTIONS(1247), + [anon_sym_COLON] = ACTIONS(1245), + [anon_sym_EQ] = ACTIONS(1247), + [anon_sym_else] = ACTIONS(1245), + [anon_sym_or] = ACTIONS(1247), + [anon_sym_and] = ACTIONS(1245), + [anon_sym_LBRACE] = ACTIONS(1245), + [anon_sym_RBRACE] = ACTIONS(1245), + [anon_sym_DOT] = ACTIONS(1247), + [anon_sym_LPAREN] = ACTIONS(1245), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1245), + [anon_sym_RBRACK] = ACTIONS(1245), + [anon_sym_linksection] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_STAR] = ACTIONS(1247), + [anon_sym_EQ_GT] = ACTIONS(1245), + [anon_sym_STAR_EQ] = ACTIONS(1245), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1245), + [anon_sym_SLASH_EQ] = ACTIONS(1245), + [anon_sym_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_PLUS_EQ] = ACTIONS(1245), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1245), + [anon_sym_DASH_EQ] = ACTIONS(1245), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_EQ] = ACTIONS(1245), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1245), + [anon_sym_GT_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP_EQ] = ACTIONS(1245), + [anon_sym_CARET_EQ] = ACTIONS(1245), + [anon_sym_PIPE_EQ] = ACTIONS(1245), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1245), + [anon_sym_EQ_EQ] = ACTIONS(1245), + [anon_sym_BANG_EQ] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_LT_EQ] = ACTIONS(1245), + [anon_sym_GT_EQ] = ACTIONS(1245), + [anon_sym_AMP] = ACTIONS(1247), + [anon_sym_CARET] = ACTIONS(1247), + [anon_sym_orelse] = ACTIONS(1245), + [anon_sym_catch] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1247), + [anon_sym_LT_LT_PIPE] = ACTIONS(1247), + [anon_sym_PLUS] = ACTIONS(1247), + [anon_sym_DASH] = ACTIONS(1247), + [anon_sym_PLUS_PLUS] = ACTIONS(1245), + [anon_sym_PLUS_PERCENT] = ACTIONS(1247), + [anon_sym_DASH_PERCENT] = ACTIONS(1247), + [anon_sym_PLUS_PIPE] = ACTIONS(1247), + [anon_sym_DASH_PIPE] = ACTIONS(1247), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_SLASH] = ACTIONS(1247), + [anon_sym_PERCENT] = ACTIONS(1247), + [anon_sym_STAR_STAR] = ACTIONS(1245), + [anon_sym_STAR_PERCENT] = ACTIONS(1247), + [anon_sym_STAR_PIPE] = ACTIONS(1247), + [anon_sym_align] = ACTIONS(1245), + [anon_sym_DOT_DOT] = ACTIONS(1245), + [anon_sym_DOT_STAR] = ACTIONS(1245), + [anon_sym_DOT_QMARK] = ACTIONS(1245), + [sym_line_comment] = ACTIONS(95), + [anon_sym_BSLASH_BSLASH] = ACTIONS(107), }, [729] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_COLON] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_or] = ACTIONS(1244), - [anon_sym_and] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1242), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1242), - [anon_sym_linksection] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_EQ_GT] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_orelse] = ACTIONS(1242), - [anon_sym_catch] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_LT_LT_PIPE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PERCENT] = ACTIONS(1244), - [anon_sym_DASH_PERCENT] = ACTIONS(1244), - [anon_sym_PLUS_PIPE] = ACTIONS(1244), - [anon_sym_DASH_PIPE] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_STAR_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_PIPE] = ACTIONS(1244), - [anon_sym_align] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(734), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(734), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_linksection] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_orelse] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_LT_LT_PIPE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT] = ACTIONS(1251), + [anon_sym_DASH_PERCENT] = ACTIONS(1251), + [anon_sym_PLUS_PIPE] = ACTIONS(1251), + [anon_sym_DASH_PIPE] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_STAR_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_PIPE] = ACTIONS(1251), + [anon_sym_align] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [730] = { [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), + [sym_SuffixOp] = STATE(751), [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_or] = ACTIONS(1248), - [anon_sym_and] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1246), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1246), - [anon_sym_linksection] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_EQ_GT] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_orelse] = ACTIONS(1246), - [anon_sym_catch] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_LT_LT_PIPE] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_PLUS_PERCENT] = ACTIONS(1248), - [anon_sym_DASH_PERCENT] = ACTIONS(1248), - [anon_sym_PLUS_PIPE] = ACTIONS(1248), - [anon_sym_DASH_PIPE] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_STAR_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_PIPE] = ACTIONS(1248), - [anon_sym_align] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1229), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_linksection] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), + [anon_sym_GT_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP_EQ] = ACTIONS(1229), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_orelse] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_PIPE] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT] = ACTIONS(1231), + [anon_sym_DASH_PERCENT] = ACTIONS(1231), + [anon_sym_PLUS_PIPE] = ACTIONS(1231), + [anon_sym_DASH_PIPE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_STAR_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_PIPE] = ACTIONS(1231), + [anon_sym_align] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [731] = { - [sym_FieldOrFnCall] = STATE(730), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(730), - [anon_sym_COMMA] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1250), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1250), - [anon_sym_linksection] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_EQ_GT] = ACTIONS(1250), - [anon_sym_STAR_EQ] = ACTIONS(1250), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1250), - [anon_sym_SLASH_EQ] = ACTIONS(1250), - [anon_sym_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1250), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_orelse] = ACTIONS(1250), - [anon_sym_catch] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_LT_LT_PIPE] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_PLUS_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_PERCENT] = ACTIONS(1252), - [anon_sym_PLUS_PIPE] = ACTIONS(1252), - [anon_sym_DASH_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_STAR_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_PIPE] = ACTIONS(1252), - [anon_sym_align] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1249), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_linksection] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_orelse] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_LT_LT_PIPE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT] = ACTIONS(1251), + [anon_sym_DASH_PERCENT] = ACTIONS(1251), + [anon_sym_PLUS_PIPE] = ACTIONS(1251), + [anon_sym_DASH_PIPE] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_STAR_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_PIPE] = ACTIONS(1251), + [anon_sym_align] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [732] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_or] = ACTIONS(1256), - [anon_sym_and] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_linksection] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_orelse] = ACTIONS(1254), - [anon_sym_catch] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_LT_PIPE] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT] = ACTIONS(1256), - [anon_sym_DASH_PERCENT] = ACTIONS(1256), - [anon_sym_PLUS_PIPE] = ACTIONS(1256), - [anon_sym_DASH_PIPE] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_STAR_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_PIPE] = ACTIONS(1256), - [anon_sym_align] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(726), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(726), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1253), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_linksection] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_EQ_GT] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_orelse] = ACTIONS(1253), + [anon_sym_catch] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_LT_LT_PIPE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_PLUS_PERCENT] = ACTIONS(1255), + [anon_sym_DASH_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS_PIPE] = ACTIONS(1255), + [anon_sym_DASH_PIPE] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_STAR_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_PIPE] = ACTIONS(1255), + [anon_sym_align] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [733] = { - [sym_FieldOrFnCall] = STATE(726), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(726), - [anon_sym_COMMA] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_or] = ACTIONS(1256), - [anon_sym_and] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_linksection] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_orelse] = ACTIONS(1254), - [anon_sym_catch] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_LT_PIPE] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT] = ACTIONS(1256), - [anon_sym_DASH_PERCENT] = ACTIONS(1256), - [anon_sym_PLUS_PIPE] = ACTIONS(1256), - [anon_sym_DASH_PIPE] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_STAR_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_PIPE] = ACTIONS(1256), - [anon_sym_align] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1259), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_linksection] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_orelse] = ACTIONS(1257), + [anon_sym_catch] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_LT_LT_PIPE] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_PLUS_PERCENT] = ACTIONS(1259), + [anon_sym_DASH_PERCENT] = ACTIONS(1259), + [anon_sym_PLUS_PIPE] = ACTIONS(1259), + [anon_sym_DASH_PIPE] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_STAR_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_PIPE] = ACTIONS(1259), + [anon_sym_align] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [734] = { - [sym_FieldOrFnCall] = STATE(728), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(728), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_or] = ACTIONS(1260), - [anon_sym_and] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_LPAREN] = ACTIONS(1258), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_linksection] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_orelse] = ACTIONS(1258), - [anon_sym_catch] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_LT_LT_PIPE] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_PLUS_PERCENT] = ACTIONS(1260), - [anon_sym_DASH_PERCENT] = ACTIONS(1260), - [anon_sym_PLUS_PIPE] = ACTIONS(1260), - [anon_sym_DASH_PIPE] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_STAR_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_PIPE] = ACTIONS(1260), - [anon_sym_align] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1263), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_linksection] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_orelse] = ACTIONS(1261), + [anon_sym_catch] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_LT_LT_PIPE] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_PLUS_PERCENT] = ACTIONS(1263), + [anon_sym_DASH_PERCENT] = ACTIONS(1263), + [anon_sym_PLUS_PIPE] = ACTIONS(1263), + [anon_sym_DASH_PIPE] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_STAR_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_PIPE] = ACTIONS(1263), + [anon_sym_align] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [735] = { - [sym_FieldOrFnCall] = STATE(735), - [sym_SuffixOp] = STATE(753), - [aux_sym_SuffixExpr_repeat1] = STATE(735), - [anon_sym_COMMA] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_or] = ACTIONS(1264), - [anon_sym_and] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_linksection] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1262), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_orelse] = ACTIONS(1262), - [anon_sym_catch] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_LT_LT_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT] = ACTIONS(1264), - [anon_sym_DASH_PERCENT] = ACTIONS(1264), - [anon_sym_PLUS_PIPE] = ACTIONS(1264), - [anon_sym_DASH_PIPE] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_STAR_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_PIPE] = ACTIONS(1264), - [anon_sym_align] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DOT_STAR] = ACTIONS(1272), - [anon_sym_DOT_QMARK] = ACTIONS(1272), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_linksection] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_orelse] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_LT_LT_PIPE] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_PLUS_PERCENT] = ACTIONS(1267), + [anon_sym_DASH_PERCENT] = ACTIONS(1267), + [anon_sym_PLUS_PIPE] = ACTIONS(1267), + [anon_sym_DASH_PIPE] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_STAR_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_PIPE] = ACTIONS(1267), + [anon_sym_align] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [736] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_COLON] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_linksection] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_STAR_EQ] = ACTIONS(1226), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1226), - [anon_sym_SLASH_EQ] = ACTIONS(1226), - [anon_sym_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1226), - [anon_sym_DASH_EQ] = ACTIONS(1226), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1226), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_catch] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_LT_LT_PIPE] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT] = ACTIONS(1228), - [anon_sym_DASH_PERCENT] = ACTIONS(1228), - [anon_sym_PLUS_PIPE] = ACTIONS(1228), - [anon_sym_DASH_PIPE] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1226), - [anon_sym_STAR_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_PIPE] = ACTIONS(1228), - [anon_sym_align] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_linksection] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_EQ_GT] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_orelse] = ACTIONS(1269), + [anon_sym_catch] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_LT_LT_PIPE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT] = ACTIONS(1271), + [anon_sym_DASH_PERCENT] = ACTIONS(1271), + [anon_sym_PLUS_PIPE] = ACTIONS(1271), + [anon_sym_DASH_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_STAR_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_PIPE] = ACTIONS(1271), + [anon_sym_align] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_STAR] = ACTIONS(1279), + [anon_sym_DOT_QMARK] = ACTIONS(1279), [sym_line_comment] = ACTIONS(95), }, [737] = { - [sym_FieldOrFnCall] = STATE(744), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(744), - [anon_sym_COMMA] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_or] = ACTIONS(1256), - [anon_sym_and] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_linksection] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_orelse] = ACTIONS(1254), - [anon_sym_catch] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_LT_PIPE] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT] = ACTIONS(1256), - [anon_sym_DASH_PERCENT] = ACTIONS(1256), - [anon_sym_PLUS_PIPE] = ACTIONS(1256), - [anon_sym_DASH_PIPE] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_STAR_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_PIPE] = ACTIONS(1256), - [anon_sym_align] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(736), + [sym_SuffixOp] = STATE(751), + [aux_sym_SuffixExpr_repeat1] = STATE(736), + [anon_sym_COMMA] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1284), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_LPAREN] = ACTIONS(1282), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1282), + [anon_sym_linksection] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_STAR_EQ] = ACTIONS(1282), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1282), + [anon_sym_SLASH_EQ] = ACTIONS(1282), + [anon_sym_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1282), + [anon_sym_DASH_EQ] = ACTIONS(1282), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1282), + [anon_sym_GT_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_EQ] = ACTIONS(1282), + [anon_sym_CARET_EQ] = ACTIONS(1282), + [anon_sym_PIPE_EQ] = ACTIONS(1282), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_orelse] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_LT_LT_PIPE] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_PLUS_PERCENT] = ACTIONS(1284), + [anon_sym_DASH_PERCENT] = ACTIONS(1284), + [anon_sym_PLUS_PIPE] = ACTIONS(1284), + [anon_sym_DASH_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_STAR_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_PIPE] = ACTIONS(1284), + [anon_sym_align] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [738] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1248), - [anon_sym_COLON] = ACTIONS(1246), - [anon_sym_EQ] = ACTIONS(1248), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_or] = ACTIONS(1248), - [anon_sym_and] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1246), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1246), - [anon_sym_linksection] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1248), - [anon_sym_STAR] = ACTIONS(1248), - [anon_sym_EQ_GT] = ACTIONS(1246), - [anon_sym_STAR_EQ] = ACTIONS(1246), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1246), - [anon_sym_SLASH_EQ] = ACTIONS(1246), - [anon_sym_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1246), - [anon_sym_DASH_EQ] = ACTIONS(1246), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_EQ] = ACTIONS(1246), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1246), - [anon_sym_GT_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP_EQ] = ACTIONS(1246), - [anon_sym_CARET_EQ] = ACTIONS(1246), - [anon_sym_PIPE_EQ] = ACTIONS(1246), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1246), - [anon_sym_BANG_EQ] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1248), - [anon_sym_CARET] = ACTIONS(1248), - [anon_sym_orelse] = ACTIONS(1246), - [anon_sym_catch] = ACTIONS(1246), - [anon_sym_LT_LT] = ACTIONS(1248), - [anon_sym_GT_GT] = ACTIONS(1248), - [anon_sym_LT_LT_PIPE] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1248), - [anon_sym_DASH] = ACTIONS(1248), - [anon_sym_PLUS_PLUS] = ACTIONS(1246), - [anon_sym_PLUS_PERCENT] = ACTIONS(1248), - [anon_sym_DASH_PERCENT] = ACTIONS(1248), - [anon_sym_PLUS_PIPE] = ACTIONS(1248), - [anon_sym_DASH_PIPE] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1248), - [anon_sym_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_STAR] = ACTIONS(1246), - [anon_sym_STAR_PERCENT] = ACTIONS(1248), - [anon_sym_STAR_PIPE] = ACTIONS(1248), - [anon_sym_align] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_linksection] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_orelse] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_LT_LT_PIPE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT] = ACTIONS(1251), + [anon_sym_DASH_PERCENT] = ACTIONS(1251), + [anon_sym_PLUS_PIPE] = ACTIONS(1251), + [anon_sym_DASH_PIPE] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_STAR_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_PIPE] = ACTIONS(1251), + [anon_sym_align] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [739] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1234), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_COLON] = ACTIONS(1234), - [anon_sym_EQ] = ACTIONS(1236), - [anon_sym_else] = ACTIONS(1234), - [anon_sym_or] = ACTIONS(1236), - [anon_sym_and] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1234), - [anon_sym_RBRACE] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1234), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1234), - [anon_sym_linksection] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_EQ_GT] = ACTIONS(1234), - [anon_sym_STAR_EQ] = ACTIONS(1234), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1234), - [anon_sym_SLASH_EQ] = ACTIONS(1234), - [anon_sym_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1234), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1234), - [anon_sym_DASH_EQ] = ACTIONS(1234), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1234), - [anon_sym_LT_LT_EQ] = ACTIONS(1234), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1234), - [anon_sym_GT_GT_EQ] = ACTIONS(1234), - [anon_sym_AMP_EQ] = ACTIONS(1234), - [anon_sym_CARET_EQ] = ACTIONS(1234), - [anon_sym_PIPE_EQ] = ACTIONS(1234), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1234), - [anon_sym_BANG_EQ] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_CARET] = ACTIONS(1236), - [anon_sym_orelse] = ACTIONS(1234), - [anon_sym_catch] = ACTIONS(1234), - [anon_sym_LT_LT] = ACTIONS(1236), - [anon_sym_GT_GT] = ACTIONS(1236), - [anon_sym_LT_LT_PIPE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1236), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_PLUS_PLUS] = ACTIONS(1234), - [anon_sym_PLUS_PERCENT] = ACTIONS(1236), - [anon_sym_DASH_PERCENT] = ACTIONS(1236), - [anon_sym_PLUS_PIPE] = ACTIONS(1236), - [anon_sym_DASH_PIPE] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1236), - [anon_sym_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_STAR] = ACTIONS(1234), - [anon_sym_STAR_PERCENT] = ACTIONS(1236), - [anon_sym_STAR_PIPE] = ACTIONS(1236), - [anon_sym_align] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1267), + [anon_sym_COLON] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1265), + [anon_sym_or] = ACTIONS(1267), + [anon_sym_and] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1265), + [anon_sym_linksection] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_orelse] = ACTIONS(1265), + [anon_sym_catch] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_LT_LT_PIPE] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_PLUS_PLUS] = ACTIONS(1265), + [anon_sym_PLUS_PERCENT] = ACTIONS(1267), + [anon_sym_DASH_PERCENT] = ACTIONS(1267), + [anon_sym_PLUS_PIPE] = ACTIONS(1267), + [anon_sym_DASH_PIPE] = ACTIONS(1267), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1265), + [anon_sym_STAR_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_PIPE] = ACTIONS(1267), + [anon_sym_align] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [740] = { - [sym_FieldOrFnCall] = STATE(750), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(750), - [anon_sym_COMMA] = ACTIONS(1258), - [anon_sym_SEMI] = ACTIONS(1258), - [anon_sym_BANG] = ACTIONS(1260), - [anon_sym_COLON] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1260), - [anon_sym_else] = ACTIONS(1258), - [anon_sym_or] = ACTIONS(1260), - [anon_sym_and] = ACTIONS(1258), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_RBRACE] = ACTIONS(1258), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1258), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1258), - [anon_sym_linksection] = ACTIONS(1258), - [anon_sym_PIPE] = ACTIONS(1260), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_STAR_EQ] = ACTIONS(1258), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1258), - [anon_sym_SLASH_EQ] = ACTIONS(1258), - [anon_sym_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1258), - [anon_sym_DASH_EQ] = ACTIONS(1258), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_EQ] = ACTIONS(1258), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1258), - [anon_sym_GT_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP_EQ] = ACTIONS(1258), - [anon_sym_CARET_EQ] = ACTIONS(1258), - [anon_sym_PIPE_EQ] = ACTIONS(1258), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1258), - [anon_sym_EQ_EQ] = ACTIONS(1258), - [anon_sym_BANG_EQ] = ACTIONS(1258), - [anon_sym_LT] = ACTIONS(1260), - [anon_sym_GT] = ACTIONS(1260), - [anon_sym_LT_EQ] = ACTIONS(1258), - [anon_sym_GT_EQ] = ACTIONS(1258), - [anon_sym_AMP] = ACTIONS(1260), - [anon_sym_CARET] = ACTIONS(1260), - [anon_sym_orelse] = ACTIONS(1258), - [anon_sym_catch] = ACTIONS(1258), - [anon_sym_LT_LT] = ACTIONS(1260), - [anon_sym_GT_GT] = ACTIONS(1260), - [anon_sym_LT_LT_PIPE] = ACTIONS(1260), - [anon_sym_PLUS] = ACTIONS(1260), - [anon_sym_DASH] = ACTIONS(1260), - [anon_sym_PLUS_PLUS] = ACTIONS(1258), - [anon_sym_PLUS_PERCENT] = ACTIONS(1260), - [anon_sym_DASH_PERCENT] = ACTIONS(1260), - [anon_sym_PLUS_PIPE] = ACTIONS(1260), - [anon_sym_DASH_PIPE] = ACTIONS(1260), - [anon_sym_PIPE_PIPE] = ACTIONS(1258), - [anon_sym_SLASH] = ACTIONS(1260), - [anon_sym_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_STAR] = ACTIONS(1258), - [anon_sym_STAR_PERCENT] = ACTIONS(1260), - [anon_sym_STAR_PIPE] = ACTIONS(1260), - [anon_sym_align] = ACTIONS(1258), - [anon_sym_DOT_DOT] = ACTIONS(1258), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1273), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_linksection] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_EQ_GT] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_orelse] = ACTIONS(1269), + [anon_sym_catch] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_LT_LT_PIPE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT] = ACTIONS(1271), + [anon_sym_DASH_PERCENT] = ACTIONS(1271), + [anon_sym_PLUS_PIPE] = ACTIONS(1271), + [anon_sym_DASH_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_STAR_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_PIPE] = ACTIONS(1271), + [anon_sym_align] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_STAR] = ACTIONS(1279), + [anon_sym_DOT_QMARK] = ACTIONS(1279), [sym_line_comment] = ACTIONS(95), }, [741] = { - [sym_FieldOrFnCall] = STATE(742), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(742), - [anon_sym_COMMA] = ACTIONS(1226), - [anon_sym_SEMI] = ACTIONS(1226), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_COLON] = ACTIONS(1226), - [anon_sym_EQ] = ACTIONS(1228), - [anon_sym_else] = ACTIONS(1226), - [anon_sym_or] = ACTIONS(1228), - [anon_sym_and] = ACTIONS(1226), - [anon_sym_LBRACE] = ACTIONS(1226), - [anon_sym_RBRACE] = ACTIONS(1226), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1226), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1226), - [anon_sym_linksection] = ACTIONS(1226), - [anon_sym_PIPE] = ACTIONS(1228), - [anon_sym_STAR] = ACTIONS(1228), - [anon_sym_EQ_GT] = ACTIONS(1226), - [anon_sym_STAR_EQ] = ACTIONS(1226), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1226), - [anon_sym_SLASH_EQ] = ACTIONS(1226), - [anon_sym_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1226), - [anon_sym_DASH_EQ] = ACTIONS(1226), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_EQ] = ACTIONS(1226), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1226), - [anon_sym_GT_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP_EQ] = ACTIONS(1226), - [anon_sym_CARET_EQ] = ACTIONS(1226), - [anon_sym_PIPE_EQ] = ACTIONS(1226), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1226), - [anon_sym_EQ_EQ] = ACTIONS(1226), - [anon_sym_BANG_EQ] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1228), - [anon_sym_GT] = ACTIONS(1228), - [anon_sym_LT_EQ] = ACTIONS(1226), - [anon_sym_GT_EQ] = ACTIONS(1226), - [anon_sym_AMP] = ACTIONS(1228), - [anon_sym_CARET] = ACTIONS(1228), - [anon_sym_orelse] = ACTIONS(1226), - [anon_sym_catch] = ACTIONS(1226), - [anon_sym_LT_LT] = ACTIONS(1228), - [anon_sym_GT_GT] = ACTIONS(1228), - [anon_sym_LT_LT_PIPE] = ACTIONS(1228), - [anon_sym_PLUS] = ACTIONS(1228), - [anon_sym_DASH] = ACTIONS(1228), - [anon_sym_PLUS_PLUS] = ACTIONS(1226), - [anon_sym_PLUS_PERCENT] = ACTIONS(1228), - [anon_sym_DASH_PERCENT] = ACTIONS(1228), - [anon_sym_PLUS_PIPE] = ACTIONS(1228), - [anon_sym_DASH_PIPE] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1226), - [anon_sym_SLASH] = ACTIONS(1228), - [anon_sym_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_STAR] = ACTIONS(1226), - [anon_sym_STAR_PERCENT] = ACTIONS(1228), - [anon_sym_STAR_PIPE] = ACTIONS(1228), - [anon_sym_align] = ACTIONS(1226), - [anon_sym_DOT_DOT] = ACTIONS(1226), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1282), + [anon_sym_SEMI] = ACTIONS(1282), + [anon_sym_BANG] = ACTIONS(1284), + [anon_sym_COLON] = ACTIONS(1282), + [anon_sym_EQ] = ACTIONS(1284), + [anon_sym_else] = ACTIONS(1282), + [anon_sym_or] = ACTIONS(1284), + [anon_sym_and] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1282), + [anon_sym_RBRACE] = ACTIONS(1282), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1282), + [anon_sym_linksection] = ACTIONS(1282), + [anon_sym_PIPE] = ACTIONS(1284), + [anon_sym_STAR] = ACTIONS(1284), + [anon_sym_EQ_GT] = ACTIONS(1282), + [anon_sym_STAR_EQ] = ACTIONS(1282), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1282), + [anon_sym_SLASH_EQ] = ACTIONS(1282), + [anon_sym_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_PLUS_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1282), + [anon_sym_DASH_EQ] = ACTIONS(1282), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_EQ] = ACTIONS(1282), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1282), + [anon_sym_GT_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP_EQ] = ACTIONS(1282), + [anon_sym_CARET_EQ] = ACTIONS(1282), + [anon_sym_PIPE_EQ] = ACTIONS(1282), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1282), + [anon_sym_EQ_EQ] = ACTIONS(1282), + [anon_sym_BANG_EQ] = ACTIONS(1282), + [anon_sym_LT] = ACTIONS(1284), + [anon_sym_GT] = ACTIONS(1284), + [anon_sym_LT_EQ] = ACTIONS(1282), + [anon_sym_GT_EQ] = ACTIONS(1282), + [anon_sym_AMP] = ACTIONS(1284), + [anon_sym_CARET] = ACTIONS(1284), + [anon_sym_orelse] = ACTIONS(1282), + [anon_sym_catch] = ACTIONS(1282), + [anon_sym_LT_LT] = ACTIONS(1284), + [anon_sym_GT_GT] = ACTIONS(1284), + [anon_sym_LT_LT_PIPE] = ACTIONS(1284), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), + [anon_sym_PLUS_PLUS] = ACTIONS(1282), + [anon_sym_PLUS_PERCENT] = ACTIONS(1284), + [anon_sym_DASH_PERCENT] = ACTIONS(1284), + [anon_sym_PLUS_PIPE] = ACTIONS(1284), + [anon_sym_DASH_PIPE] = ACTIONS(1284), + [anon_sym_PIPE_PIPE] = ACTIONS(1282), + [anon_sym_SLASH] = ACTIONS(1284), + [anon_sym_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_STAR] = ACTIONS(1282), + [anon_sym_STAR_PERCENT] = ACTIONS(1284), + [anon_sym_STAR_PIPE] = ACTIONS(1284), + [anon_sym_align] = ACTIONS(1282), + [anon_sym_DOT_DOT] = ACTIONS(1282), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [742] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_COLON] = ACTIONS(1242), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_or] = ACTIONS(1244), - [anon_sym_and] = ACTIONS(1242), - [anon_sym_LBRACE] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1242), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1242), - [anon_sym_linksection] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_EQ_GT] = ACTIONS(1242), - [anon_sym_STAR_EQ] = ACTIONS(1242), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1242), - [anon_sym_SLASH_EQ] = ACTIONS(1242), - [anon_sym_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1242), - [anon_sym_DASH_EQ] = ACTIONS(1242), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_EQ] = ACTIONS(1242), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1242), - [anon_sym_GT_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP_EQ] = ACTIONS(1242), - [anon_sym_CARET_EQ] = ACTIONS(1242), - [anon_sym_PIPE_EQ] = ACTIONS(1242), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1242), - [anon_sym_BANG_EQ] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_CARET] = ACTIONS(1244), - [anon_sym_orelse] = ACTIONS(1242), - [anon_sym_catch] = ACTIONS(1242), - [anon_sym_LT_LT] = ACTIONS(1244), - [anon_sym_GT_GT] = ACTIONS(1244), - [anon_sym_LT_LT_PIPE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1244), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_PLUS_PLUS] = ACTIONS(1242), - [anon_sym_PLUS_PERCENT] = ACTIONS(1244), - [anon_sym_DASH_PERCENT] = ACTIONS(1244), - [anon_sym_PLUS_PIPE] = ACTIONS(1244), - [anon_sym_DASH_PIPE] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1244), - [anon_sym_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_STAR] = ACTIONS(1242), - [anon_sym_STAR_PERCENT] = ACTIONS(1244), - [anon_sym_STAR_PIPE] = ACTIONS(1244), - [anon_sym_align] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(739), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(739), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_linksection] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), + [anon_sym_GT_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP_EQ] = ACTIONS(1229), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_orelse] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_PIPE] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT] = ACTIONS(1231), + [anon_sym_DASH_PERCENT] = ACTIONS(1231), + [anon_sym_PLUS_PIPE] = ACTIONS(1231), + [anon_sym_DASH_PIPE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_STAR_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_PIPE] = ACTIONS(1231), + [anon_sym_align] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [743] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1222), - [anon_sym_SEMI] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1224), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1224), - [anon_sym_else] = ACTIONS(1222), - [anon_sym_or] = ACTIONS(1224), - [anon_sym_and] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1222), - [anon_sym_RBRACE] = ACTIONS(1222), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1222), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1222), - [anon_sym_linksection] = ACTIONS(1222), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_STAR] = ACTIONS(1224), - [anon_sym_EQ_GT] = ACTIONS(1222), - [anon_sym_STAR_EQ] = ACTIONS(1222), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1222), - [anon_sym_SLASH_EQ] = ACTIONS(1222), - [anon_sym_PERCENT_EQ] = ACTIONS(1222), - [anon_sym_PLUS_EQ] = ACTIONS(1222), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1222), - [anon_sym_DASH_EQ] = ACTIONS(1222), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1222), - [anon_sym_LT_LT_EQ] = ACTIONS(1222), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1222), - [anon_sym_GT_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP_EQ] = ACTIONS(1222), - [anon_sym_CARET_EQ] = ACTIONS(1222), - [anon_sym_PIPE_EQ] = ACTIONS(1222), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1222), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1222), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1222), - [anon_sym_EQ_EQ] = ACTIONS(1222), - [anon_sym_BANG_EQ] = ACTIONS(1222), - [anon_sym_LT] = ACTIONS(1224), - [anon_sym_GT] = ACTIONS(1224), - [anon_sym_LT_EQ] = ACTIONS(1222), - [anon_sym_GT_EQ] = ACTIONS(1222), - [anon_sym_AMP] = ACTIONS(1224), - [anon_sym_CARET] = ACTIONS(1224), - [anon_sym_orelse] = ACTIONS(1222), - [anon_sym_catch] = ACTIONS(1222), - [anon_sym_LT_LT] = ACTIONS(1224), - [anon_sym_GT_GT] = ACTIONS(1224), - [anon_sym_LT_LT_PIPE] = ACTIONS(1224), - [anon_sym_PLUS] = ACTIONS(1224), - [anon_sym_DASH] = ACTIONS(1224), - [anon_sym_PLUS_PLUS] = ACTIONS(1222), - [anon_sym_PLUS_PERCENT] = ACTIONS(1224), - [anon_sym_DASH_PERCENT] = ACTIONS(1224), - [anon_sym_PLUS_PIPE] = ACTIONS(1224), - [anon_sym_DASH_PIPE] = ACTIONS(1224), - [anon_sym_PIPE_PIPE] = ACTIONS(1222), - [anon_sym_SLASH] = ACTIONS(1224), - [anon_sym_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_STAR] = ACTIONS(1222), - [anon_sym_STAR_PERCENT] = ACTIONS(1224), - [anon_sym_STAR_PIPE] = ACTIONS(1224), - [anon_sym_align] = ACTIONS(1222), - [anon_sym_DOT_DOT] = ACTIONS(1222), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1229), + [anon_sym_SEMI] = ACTIONS(1229), + [anon_sym_BANG] = ACTIONS(1231), + [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_EQ] = ACTIONS(1231), + [anon_sym_else] = ACTIONS(1229), + [anon_sym_or] = ACTIONS(1231), + [anon_sym_and] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_RBRACE] = ACTIONS(1229), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1229), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1229), + [anon_sym_linksection] = ACTIONS(1229), + [anon_sym_PIPE] = ACTIONS(1231), + [anon_sym_STAR] = ACTIONS(1231), + [anon_sym_EQ_GT] = ACTIONS(1229), + [anon_sym_STAR_EQ] = ACTIONS(1229), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1229), + [anon_sym_SLASH_EQ] = ACTIONS(1229), + [anon_sym_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1229), + [anon_sym_DASH_EQ] = ACTIONS(1229), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_EQ] = ACTIONS(1229), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1229), + [anon_sym_GT_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP_EQ] = ACTIONS(1229), + [anon_sym_CARET_EQ] = ACTIONS(1229), + [anon_sym_PIPE_EQ] = ACTIONS(1229), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1229), + [anon_sym_EQ_EQ] = ACTIONS(1229), + [anon_sym_BANG_EQ] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_LT_EQ] = ACTIONS(1229), + [anon_sym_GT_EQ] = ACTIONS(1229), + [anon_sym_AMP] = ACTIONS(1231), + [anon_sym_CARET] = ACTIONS(1231), + [anon_sym_orelse] = ACTIONS(1229), + [anon_sym_catch] = ACTIONS(1229), + [anon_sym_LT_LT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1231), + [anon_sym_LT_LT_PIPE] = ACTIONS(1231), + [anon_sym_PLUS] = ACTIONS(1231), + [anon_sym_DASH] = ACTIONS(1231), + [anon_sym_PLUS_PLUS] = ACTIONS(1229), + [anon_sym_PLUS_PERCENT] = ACTIONS(1231), + [anon_sym_DASH_PERCENT] = ACTIONS(1231), + [anon_sym_PLUS_PIPE] = ACTIONS(1231), + [anon_sym_DASH_PIPE] = ACTIONS(1231), + [anon_sym_PIPE_PIPE] = ACTIONS(1229), + [anon_sym_SLASH] = ACTIONS(1231), + [anon_sym_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_STAR] = ACTIONS(1229), + [anon_sym_STAR_PERCENT] = ACTIONS(1231), + [anon_sym_STAR_PIPE] = ACTIONS(1231), + [anon_sym_align] = ACTIONS(1229), + [anon_sym_DOT_DOT] = ACTIONS(1229), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [744] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1230), - [anon_sym_SEMI] = ACTIONS(1230), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_COLON] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_else] = ACTIONS(1230), - [anon_sym_or] = ACTIONS(1232), - [anon_sym_and] = ACTIONS(1230), - [anon_sym_LBRACE] = ACTIONS(1230), - [anon_sym_RBRACE] = ACTIONS(1230), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1230), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1230), - [anon_sym_linksection] = ACTIONS(1230), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_EQ_GT] = ACTIONS(1230), - [anon_sym_STAR_EQ] = ACTIONS(1230), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1230), - [anon_sym_SLASH_EQ] = ACTIONS(1230), - [anon_sym_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_PLUS_EQ] = ACTIONS(1230), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1230), - [anon_sym_DASH_EQ] = ACTIONS(1230), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1230), - [anon_sym_LT_LT_EQ] = ACTIONS(1230), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1230), - [anon_sym_GT_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP_EQ] = ACTIONS(1230), - [anon_sym_CARET_EQ] = ACTIONS(1230), - [anon_sym_PIPE_EQ] = ACTIONS(1230), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1230), - [anon_sym_EQ_EQ] = ACTIONS(1230), - [anon_sym_BANG_EQ] = ACTIONS(1230), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1230), - [anon_sym_GT_EQ] = ACTIONS(1230), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_CARET] = ACTIONS(1232), - [anon_sym_orelse] = ACTIONS(1230), - [anon_sym_catch] = ACTIONS(1230), - [anon_sym_LT_LT] = ACTIONS(1232), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_LT_LT_PIPE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1232), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_PLUS_PLUS] = ACTIONS(1230), - [anon_sym_PLUS_PERCENT] = ACTIONS(1232), - [anon_sym_DASH_PERCENT] = ACTIONS(1232), - [anon_sym_PLUS_PIPE] = ACTIONS(1232), - [anon_sym_DASH_PIPE] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1230), - [anon_sym_SLASH] = ACTIONS(1232), - [anon_sym_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_STAR] = ACTIONS(1230), - [anon_sym_STAR_PERCENT] = ACTIONS(1232), - [anon_sym_STAR_PIPE] = ACTIONS(1232), - [anon_sym_align] = ACTIONS(1230), - [anon_sym_DOT_DOT] = ACTIONS(1230), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(741), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(741), + [anon_sym_COMMA] = ACTIONS(1233), + [anon_sym_SEMI] = ACTIONS(1233), + [anon_sym_BANG] = ACTIONS(1235), + [anon_sym_COLON] = ACTIONS(1233), + [anon_sym_EQ] = ACTIONS(1235), + [anon_sym_else] = ACTIONS(1233), + [anon_sym_or] = ACTIONS(1235), + [anon_sym_and] = ACTIONS(1233), + [anon_sym_LBRACE] = ACTIONS(1233), + [anon_sym_RBRACE] = ACTIONS(1233), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1233), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_linksection] = ACTIONS(1233), + [anon_sym_PIPE] = ACTIONS(1235), + [anon_sym_STAR] = ACTIONS(1235), + [anon_sym_EQ_GT] = ACTIONS(1233), + [anon_sym_STAR_EQ] = ACTIONS(1233), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1233), + [anon_sym_SLASH_EQ] = ACTIONS(1233), + [anon_sym_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_PLUS_EQ] = ACTIONS(1233), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1233), + [anon_sym_DASH_EQ] = ACTIONS(1233), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_EQ] = ACTIONS(1233), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1233), + [anon_sym_GT_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP_EQ] = ACTIONS(1233), + [anon_sym_CARET_EQ] = ACTIONS(1233), + [anon_sym_PIPE_EQ] = ACTIONS(1233), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1233), + [anon_sym_EQ_EQ] = ACTIONS(1233), + [anon_sym_BANG_EQ] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(1235), + [anon_sym_GT] = ACTIONS(1235), + [anon_sym_LT_EQ] = ACTIONS(1233), + [anon_sym_GT_EQ] = ACTIONS(1233), + [anon_sym_AMP] = ACTIONS(1235), + [anon_sym_CARET] = ACTIONS(1235), + [anon_sym_orelse] = ACTIONS(1233), + [anon_sym_catch] = ACTIONS(1233), + [anon_sym_LT_LT] = ACTIONS(1235), + [anon_sym_GT_GT] = ACTIONS(1235), + [anon_sym_LT_LT_PIPE] = ACTIONS(1235), + [anon_sym_PLUS] = ACTIONS(1235), + [anon_sym_DASH] = ACTIONS(1235), + [anon_sym_PLUS_PLUS] = ACTIONS(1233), + [anon_sym_PLUS_PERCENT] = ACTIONS(1235), + [anon_sym_DASH_PERCENT] = ACTIONS(1235), + [anon_sym_PLUS_PIPE] = ACTIONS(1235), + [anon_sym_DASH_PIPE] = ACTIONS(1235), + [anon_sym_PIPE_PIPE] = ACTIONS(1233), + [anon_sym_SLASH] = ACTIONS(1235), + [anon_sym_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_STAR] = ACTIONS(1233), + [anon_sym_STAR_PERCENT] = ACTIONS(1235), + [anon_sym_STAR_PIPE] = ACTIONS(1235), + [anon_sym_align] = ACTIONS(1233), + [anon_sym_DOT_DOT] = ACTIONS(1233), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [745] = { - [aux_sym_LINESTRING_repeat1] = STATE(747), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1277), - [anon_sym_COLON] = ACTIONS(1275), - [anon_sym_EQ] = ACTIONS(1277), - [anon_sym_else] = ACTIONS(1275), - [anon_sym_or] = ACTIONS(1277), - [anon_sym_and] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_DOT] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(1275), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1275), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_linksection] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1277), - [anon_sym_STAR] = ACTIONS(1277), - [anon_sym_EQ_GT] = ACTIONS(1275), - [anon_sym_STAR_EQ] = ACTIONS(1275), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1275), - [anon_sym_SLASH_EQ] = ACTIONS(1275), - [anon_sym_PERCENT_EQ] = ACTIONS(1275), - [anon_sym_PLUS_EQ] = ACTIONS(1275), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1275), - [anon_sym_DASH_EQ] = ACTIONS(1275), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1275), - [anon_sym_LT_LT_EQ] = ACTIONS(1275), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1275), - [anon_sym_GT_GT_EQ] = ACTIONS(1275), - [anon_sym_AMP_EQ] = ACTIONS(1275), - [anon_sym_CARET_EQ] = ACTIONS(1275), - [anon_sym_PIPE_EQ] = ACTIONS(1275), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1275), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1275), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1275), - [anon_sym_EQ_EQ] = ACTIONS(1275), - [anon_sym_BANG_EQ] = ACTIONS(1275), - [anon_sym_LT] = ACTIONS(1277), - [anon_sym_GT] = ACTIONS(1277), - [anon_sym_LT_EQ] = ACTIONS(1275), - [anon_sym_GT_EQ] = ACTIONS(1275), - [anon_sym_AMP] = ACTIONS(1277), - [anon_sym_CARET] = ACTIONS(1277), - [anon_sym_orelse] = ACTIONS(1275), - [anon_sym_catch] = ACTIONS(1275), - [anon_sym_LT_LT] = ACTIONS(1277), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_LT_LT_PIPE] = ACTIONS(1277), - [anon_sym_PLUS] = ACTIONS(1277), - [anon_sym_DASH] = ACTIONS(1277), - [anon_sym_PLUS_PLUS] = ACTIONS(1275), - [anon_sym_PLUS_PERCENT] = ACTIONS(1277), - [anon_sym_DASH_PERCENT] = ACTIONS(1277), - [anon_sym_PLUS_PIPE] = ACTIONS(1277), - [anon_sym_DASH_PIPE] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1275), - [anon_sym_SLASH] = ACTIONS(1277), - [anon_sym_PERCENT] = ACTIONS(1277), - [anon_sym_STAR_STAR] = ACTIONS(1275), - [anon_sym_STAR_PERCENT] = ACTIONS(1277), - [anon_sym_STAR_PIPE] = ACTIONS(1277), - [anon_sym_align] = ACTIONS(1275), - [anon_sym_DOT_DOT] = ACTIONS(1275), - [anon_sym_DOT_STAR] = ACTIONS(1275), - [anon_sym_DOT_QMARK] = ACTIONS(1275), - [sym_line_comment] = ACTIONS(95), - [aux_sym_LINESTRING_token1] = ACTIONS(1279), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1241), + [anon_sym_SEMI] = ACTIONS(1241), + [anon_sym_BANG] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1241), + [anon_sym_EQ] = ACTIONS(1243), + [anon_sym_else] = ACTIONS(1241), + [anon_sym_or] = ACTIONS(1243), + [anon_sym_and] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1241), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_linksection] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_EQ_GT] = ACTIONS(1241), + [anon_sym_STAR_EQ] = ACTIONS(1241), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1241), + [anon_sym_SLASH_EQ] = ACTIONS(1241), + [anon_sym_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_PLUS_EQ] = ACTIONS(1241), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1241), + [anon_sym_DASH_EQ] = ACTIONS(1241), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_EQ] = ACTIONS(1241), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1241), + [anon_sym_GT_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP_EQ] = ACTIONS(1241), + [anon_sym_CARET_EQ] = ACTIONS(1241), + [anon_sym_PIPE_EQ] = ACTIONS(1241), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1241), + [anon_sym_EQ_EQ] = ACTIONS(1241), + [anon_sym_BANG_EQ] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_LT_EQ] = ACTIONS(1241), + [anon_sym_GT_EQ] = ACTIONS(1241), + [anon_sym_AMP] = ACTIONS(1243), + [anon_sym_CARET] = ACTIONS(1243), + [anon_sym_orelse] = ACTIONS(1241), + [anon_sym_catch] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1243), + [anon_sym_LT_LT_PIPE] = ACTIONS(1243), + [anon_sym_PLUS] = ACTIONS(1243), + [anon_sym_DASH] = ACTIONS(1243), + [anon_sym_PLUS_PLUS] = ACTIONS(1241), + [anon_sym_PLUS_PERCENT] = ACTIONS(1243), + [anon_sym_DASH_PERCENT] = ACTIONS(1243), + [anon_sym_PLUS_PIPE] = ACTIONS(1243), + [anon_sym_DASH_PIPE] = ACTIONS(1243), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_SLASH] = ACTIONS(1243), + [anon_sym_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_STAR] = ACTIONS(1241), + [anon_sym_STAR_PERCENT] = ACTIONS(1243), + [anon_sym_STAR_PIPE] = ACTIONS(1243), + [anon_sym_align] = ACTIONS(1241), + [anon_sym_DOT_DOT] = ACTIONS(1241), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(95), }, [746] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_or] = ACTIONS(1264), - [anon_sym_and] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1266), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_linksection] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1262), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_orelse] = ACTIONS(1262), - [anon_sym_catch] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_LT_LT_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT] = ACTIONS(1264), - [anon_sym_DASH_PERCENT] = ACTIONS(1264), - [anon_sym_PLUS_PIPE] = ACTIONS(1264), - [anon_sym_DASH_PIPE] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_STAR_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_PIPE] = ACTIONS(1264), - [anon_sym_align] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DOT_STAR] = ACTIONS(1272), - [anon_sym_DOT_QMARK] = ACTIONS(1272), + [sym_FieldOrFnCall] = STATE(750), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(750), + [anon_sym_COMMA] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1249), + [anon_sym_BANG] = ACTIONS(1251), + [anon_sym_COLON] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [anon_sym_else] = ACTIONS(1249), + [anon_sym_or] = ACTIONS(1251), + [anon_sym_and] = ACTIONS(1249), + [anon_sym_LBRACE] = ACTIONS(1249), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1249), + [anon_sym_linksection] = ACTIONS(1249), + [anon_sym_PIPE] = ACTIONS(1251), + [anon_sym_STAR] = ACTIONS(1251), + [anon_sym_EQ_GT] = ACTIONS(1249), + [anon_sym_STAR_EQ] = ACTIONS(1249), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1249), + [anon_sym_SLASH_EQ] = ACTIONS(1249), + [anon_sym_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1249), + [anon_sym_DASH_EQ] = ACTIONS(1249), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_EQ] = ACTIONS(1249), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1249), + [anon_sym_GT_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP_EQ] = ACTIONS(1249), + [anon_sym_CARET_EQ] = ACTIONS(1249), + [anon_sym_PIPE_EQ] = ACTIONS(1249), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1249), + [anon_sym_EQ_EQ] = ACTIONS(1249), + [anon_sym_BANG_EQ] = ACTIONS(1249), + [anon_sym_LT] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1249), + [anon_sym_GT_EQ] = ACTIONS(1249), + [anon_sym_AMP] = ACTIONS(1251), + [anon_sym_CARET] = ACTIONS(1251), + [anon_sym_orelse] = ACTIONS(1249), + [anon_sym_catch] = ACTIONS(1249), + [anon_sym_LT_LT] = ACTIONS(1251), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_LT_LT_PIPE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1251), + [anon_sym_DASH] = ACTIONS(1251), + [anon_sym_PLUS_PLUS] = ACTIONS(1249), + [anon_sym_PLUS_PERCENT] = ACTIONS(1251), + [anon_sym_DASH_PERCENT] = ACTIONS(1251), + [anon_sym_PLUS_PIPE] = ACTIONS(1251), + [anon_sym_DASH_PIPE] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_STAR] = ACTIONS(1249), + [anon_sym_STAR_PERCENT] = ACTIONS(1251), + [anon_sym_STAR_PIPE] = ACTIONS(1251), + [anon_sym_align] = ACTIONS(1249), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [747] = { - [aux_sym_LINESTRING_repeat1] = STATE(747), - [anon_sym_COMMA] = ACTIONS(1281), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_BANG] = ACTIONS(1283), - [anon_sym_COLON] = ACTIONS(1281), - [anon_sym_EQ] = ACTIONS(1283), - [anon_sym_else] = ACTIONS(1281), - [anon_sym_or] = ACTIONS(1283), - [anon_sym_and] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(1281), - [anon_sym_DOT] = ACTIONS(1283), - [anon_sym_LPAREN] = ACTIONS(1281), - [anon_sym_RPAREN] = ACTIONS(1281), - [anon_sym_LBRACK] = ACTIONS(1281), - [anon_sym_RBRACK] = ACTIONS(1281), - [anon_sym_linksection] = ACTIONS(1281), - [anon_sym_PIPE] = ACTIONS(1283), - [anon_sym_STAR] = ACTIONS(1283), - [anon_sym_EQ_GT] = ACTIONS(1281), - [anon_sym_STAR_EQ] = ACTIONS(1281), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1281), - [anon_sym_SLASH_EQ] = ACTIONS(1281), - [anon_sym_PERCENT_EQ] = ACTIONS(1281), - [anon_sym_PLUS_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1281), - [anon_sym_DASH_EQ] = ACTIONS(1281), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1281), - [anon_sym_LT_LT_EQ] = ACTIONS(1281), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1281), - [anon_sym_GT_GT_EQ] = ACTIONS(1281), - [anon_sym_AMP_EQ] = ACTIONS(1281), - [anon_sym_CARET_EQ] = ACTIONS(1281), - [anon_sym_PIPE_EQ] = ACTIONS(1281), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1281), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1281), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1281), - [anon_sym_EQ_EQ] = ACTIONS(1281), - [anon_sym_BANG_EQ] = ACTIONS(1281), - [anon_sym_LT] = ACTIONS(1283), - [anon_sym_GT] = ACTIONS(1283), - [anon_sym_LT_EQ] = ACTIONS(1281), - [anon_sym_GT_EQ] = ACTIONS(1281), - [anon_sym_AMP] = ACTIONS(1283), - [anon_sym_CARET] = ACTIONS(1283), - [anon_sym_orelse] = ACTIONS(1281), - [anon_sym_catch] = ACTIONS(1281), - [anon_sym_LT_LT] = ACTIONS(1283), - [anon_sym_GT_GT] = ACTIONS(1283), - [anon_sym_LT_LT_PIPE] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_PLUS_PLUS] = ACTIONS(1281), - [anon_sym_PLUS_PERCENT] = ACTIONS(1283), - [anon_sym_DASH_PERCENT] = ACTIONS(1283), - [anon_sym_PLUS_PIPE] = ACTIONS(1283), - [anon_sym_DASH_PIPE] = ACTIONS(1283), - [anon_sym_PIPE_PIPE] = ACTIONS(1281), - [anon_sym_SLASH] = ACTIONS(1283), - [anon_sym_PERCENT] = ACTIONS(1283), - [anon_sym_STAR_STAR] = ACTIONS(1281), - [anon_sym_STAR_PERCENT] = ACTIONS(1283), - [anon_sym_STAR_PIPE] = ACTIONS(1283), - [anon_sym_align] = ACTIONS(1281), - [anon_sym_DOT_DOT] = ACTIONS(1281), - [anon_sym_DOT_STAR] = ACTIONS(1281), - [anon_sym_DOT_QMARK] = ACTIONS(1281), - [sym_line_comment] = ACTIONS(95), - [aux_sym_LINESTRING_token1] = ACTIONS(1285), + [sym_FieldOrFnCall] = STATE(749), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(749), + [anon_sym_COMMA] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1253), + [anon_sym_EQ] = ACTIONS(1255), + [anon_sym_else] = ACTIONS(1253), + [anon_sym_or] = ACTIONS(1255), + [anon_sym_and] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1253), + [anon_sym_RBRACE] = ACTIONS(1253), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1253), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_linksection] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1255), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_EQ_GT] = ACTIONS(1253), + [anon_sym_STAR_EQ] = ACTIONS(1253), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1253), + [anon_sym_SLASH_EQ] = ACTIONS(1253), + [anon_sym_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1253), + [anon_sym_DASH_EQ] = ACTIONS(1253), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_EQ] = ACTIONS(1253), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1253), + [anon_sym_GT_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP_EQ] = ACTIONS(1253), + [anon_sym_CARET_EQ] = ACTIONS(1253), + [anon_sym_PIPE_EQ] = ACTIONS(1253), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1255), + [anon_sym_GT] = ACTIONS(1255), + [anon_sym_LT_EQ] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1255), + [anon_sym_CARET] = ACTIONS(1255), + [anon_sym_orelse] = ACTIONS(1253), + [anon_sym_catch] = ACTIONS(1253), + [anon_sym_LT_LT] = ACTIONS(1255), + [anon_sym_GT_GT] = ACTIONS(1255), + [anon_sym_LT_LT_PIPE] = ACTIONS(1255), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), + [anon_sym_PLUS_PLUS] = ACTIONS(1253), + [anon_sym_PLUS_PERCENT] = ACTIONS(1255), + [anon_sym_DASH_PERCENT] = ACTIONS(1255), + [anon_sym_PLUS_PIPE] = ACTIONS(1255), + [anon_sym_DASH_PIPE] = ACTIONS(1255), + [anon_sym_PIPE_PIPE] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1253), + [anon_sym_STAR_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_PIPE] = ACTIONS(1255), + [anon_sym_align] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), + [sym_line_comment] = ACTIONS(95), }, [748] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1254), - [anon_sym_SEMI] = ACTIONS(1254), - [anon_sym_BANG] = ACTIONS(1256), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_EQ] = ACTIONS(1256), - [anon_sym_else] = ACTIONS(1254), - [anon_sym_or] = ACTIONS(1256), - [anon_sym_and] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1254), - [anon_sym_RBRACE] = ACTIONS(1254), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1254), - [anon_sym_linksection] = ACTIONS(1254), - [anon_sym_PIPE] = ACTIONS(1256), - [anon_sym_STAR] = ACTIONS(1256), - [anon_sym_EQ_GT] = ACTIONS(1254), - [anon_sym_STAR_EQ] = ACTIONS(1254), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1254), - [anon_sym_SLASH_EQ] = ACTIONS(1254), - [anon_sym_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1254), - [anon_sym_DASH_EQ] = ACTIONS(1254), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_EQ] = ACTIONS(1254), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1254), - [anon_sym_GT_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP_EQ] = ACTIONS(1254), - [anon_sym_CARET_EQ] = ACTIONS(1254), - [anon_sym_PIPE_EQ] = ACTIONS(1254), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1254), - [anon_sym_EQ_EQ] = ACTIONS(1254), - [anon_sym_BANG_EQ] = ACTIONS(1254), - [anon_sym_LT] = ACTIONS(1256), - [anon_sym_GT] = ACTIONS(1256), - [anon_sym_LT_EQ] = ACTIONS(1254), - [anon_sym_GT_EQ] = ACTIONS(1254), - [anon_sym_AMP] = ACTIONS(1256), - [anon_sym_CARET] = ACTIONS(1256), - [anon_sym_orelse] = ACTIONS(1254), - [anon_sym_catch] = ACTIONS(1254), - [anon_sym_LT_LT] = ACTIONS(1256), - [anon_sym_GT_GT] = ACTIONS(1256), - [anon_sym_LT_LT_PIPE] = ACTIONS(1256), - [anon_sym_PLUS] = ACTIONS(1256), - [anon_sym_DASH] = ACTIONS(1256), - [anon_sym_PLUS_PLUS] = ACTIONS(1254), - [anon_sym_PLUS_PERCENT] = ACTIONS(1256), - [anon_sym_DASH_PERCENT] = ACTIONS(1256), - [anon_sym_PLUS_PIPE] = ACTIONS(1256), - [anon_sym_DASH_PIPE] = ACTIONS(1256), - [anon_sym_PIPE_PIPE] = ACTIONS(1254), - [anon_sym_SLASH] = ACTIONS(1256), - [anon_sym_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_STAR] = ACTIONS(1254), - [anon_sym_STAR_PERCENT] = ACTIONS(1256), - [anon_sym_STAR_PIPE] = ACTIONS(1256), - [anon_sym_align] = ACTIONS(1254), - [anon_sym_DOT_DOT] = ACTIONS(1254), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1259), + [anon_sym_COLON] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1257), + [anon_sym_or] = ACTIONS(1259), + [anon_sym_and] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1257), + [anon_sym_linksection] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_EQ_GT] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_orelse] = ACTIONS(1257), + [anon_sym_catch] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_LT_LT_PIPE] = ACTIONS(1259), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_PLUS_PLUS] = ACTIONS(1257), + [anon_sym_PLUS_PERCENT] = ACTIONS(1259), + [anon_sym_DASH_PERCENT] = ACTIONS(1259), + [anon_sym_PLUS_PIPE] = ACTIONS(1259), + [anon_sym_DASH_PIPE] = ACTIONS(1259), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_STAR] = ACTIONS(1257), + [anon_sym_STAR_PERCENT] = ACTIONS(1259), + [anon_sym_STAR_PIPE] = ACTIONS(1259), + [anon_sym_align] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [749] = { - [sym_FieldOrFnCall] = STATE(738), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(738), - [anon_sym_COMMA] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1252), - [anon_sym_COLON] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), - [anon_sym_else] = ACTIONS(1250), - [anon_sym_or] = ACTIONS(1252), - [anon_sym_and] = ACTIONS(1250), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1250), - [anon_sym_linksection] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1252), - [anon_sym_STAR] = ACTIONS(1252), - [anon_sym_EQ_GT] = ACTIONS(1250), - [anon_sym_STAR_EQ] = ACTIONS(1250), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1250), - [anon_sym_SLASH_EQ] = ACTIONS(1250), - [anon_sym_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1250), - [anon_sym_DASH_EQ] = ACTIONS(1250), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_EQ] = ACTIONS(1250), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1250), - [anon_sym_GT_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP_EQ] = ACTIONS(1250), - [anon_sym_CARET_EQ] = ACTIONS(1250), - [anon_sym_PIPE_EQ] = ACTIONS(1250), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1250), - [anon_sym_BANG_EQ] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1252), - [anon_sym_GT] = ACTIONS(1252), - [anon_sym_LT_EQ] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1252), - [anon_sym_CARET] = ACTIONS(1252), - [anon_sym_orelse] = ACTIONS(1250), - [anon_sym_catch] = ACTIONS(1250), - [anon_sym_LT_LT] = ACTIONS(1252), - [anon_sym_GT_GT] = ACTIONS(1252), - [anon_sym_LT_LT_PIPE] = ACTIONS(1252), - [anon_sym_PLUS] = ACTIONS(1252), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_PLUS_PLUS] = ACTIONS(1250), - [anon_sym_PLUS_PERCENT] = ACTIONS(1252), - [anon_sym_DASH_PERCENT] = ACTIONS(1252), - [anon_sym_PLUS_PIPE] = ACTIONS(1252), - [anon_sym_DASH_PIPE] = ACTIONS(1252), - [anon_sym_PIPE_PIPE] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_STAR] = ACTIONS(1250), - [anon_sym_STAR_PERCENT] = ACTIONS(1252), - [anon_sym_STAR_PIPE] = ACTIONS(1252), - [anon_sym_align] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1237), + [anon_sym_SEMI] = ACTIONS(1237), + [anon_sym_BANG] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1237), + [anon_sym_EQ] = ACTIONS(1239), + [anon_sym_else] = ACTIONS(1237), + [anon_sym_or] = ACTIONS(1239), + [anon_sym_and] = ACTIONS(1237), + [anon_sym_LBRACE] = ACTIONS(1237), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1237), + [anon_sym_linksection] = ACTIONS(1237), + [anon_sym_PIPE] = ACTIONS(1239), + [anon_sym_STAR] = ACTIONS(1239), + [anon_sym_EQ_GT] = ACTIONS(1237), + [anon_sym_STAR_EQ] = ACTIONS(1237), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1237), + [anon_sym_SLASH_EQ] = ACTIONS(1237), + [anon_sym_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_PLUS_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1237), + [anon_sym_DASH_EQ] = ACTIONS(1237), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_EQ] = ACTIONS(1237), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1237), + [anon_sym_GT_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP_EQ] = ACTIONS(1237), + [anon_sym_CARET_EQ] = ACTIONS(1237), + [anon_sym_PIPE_EQ] = ACTIONS(1237), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1237), + [anon_sym_EQ_EQ] = ACTIONS(1237), + [anon_sym_BANG_EQ] = ACTIONS(1237), + [anon_sym_LT] = ACTIONS(1239), + [anon_sym_GT] = ACTIONS(1239), + [anon_sym_LT_EQ] = ACTIONS(1237), + [anon_sym_GT_EQ] = ACTIONS(1237), + [anon_sym_AMP] = ACTIONS(1239), + [anon_sym_CARET] = ACTIONS(1239), + [anon_sym_orelse] = ACTIONS(1237), + [anon_sym_catch] = ACTIONS(1237), + [anon_sym_LT_LT] = ACTIONS(1239), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_LT_LT_PIPE] = ACTIONS(1239), + [anon_sym_PLUS] = ACTIONS(1239), + [anon_sym_DASH] = ACTIONS(1239), + [anon_sym_PLUS_PLUS] = ACTIONS(1237), + [anon_sym_PLUS_PERCENT] = ACTIONS(1239), + [anon_sym_DASH_PERCENT] = ACTIONS(1239), + [anon_sym_PLUS_PIPE] = ACTIONS(1239), + [anon_sym_DASH_PIPE] = ACTIONS(1239), + [anon_sym_PIPE_PIPE] = ACTIONS(1237), + [anon_sym_SLASH] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_STAR] = ACTIONS(1237), + [anon_sym_STAR_PERCENT] = ACTIONS(1239), + [anon_sym_STAR_PIPE] = ACTIONS(1239), + [anon_sym_align] = ACTIONS(1237), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [750] = { - [sym_FieldOrFnCall] = STATE(746), - [sym_SuffixOp] = STATE(754), - [aux_sym_SuffixExpr_repeat1] = STATE(746), - [anon_sym_COMMA] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1238), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_EQ] = ACTIONS(1240), - [anon_sym_else] = ACTIONS(1238), - [anon_sym_or] = ACTIONS(1240), - [anon_sym_and] = ACTIONS(1238), - [anon_sym_LBRACE] = ACTIONS(1238), - [anon_sym_RBRACE] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1200), - [anon_sym_RPAREN] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(1204), - [anon_sym_RBRACK] = ACTIONS(1238), - [anon_sym_linksection] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_EQ_GT] = ACTIONS(1238), - [anon_sym_STAR_EQ] = ACTIONS(1238), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1238), - [anon_sym_SLASH_EQ] = ACTIONS(1238), - [anon_sym_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1238), - [anon_sym_DASH_EQ] = ACTIONS(1238), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_EQ] = ACTIONS(1238), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1238), - [anon_sym_GT_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP_EQ] = ACTIONS(1238), - [anon_sym_CARET_EQ] = ACTIONS(1238), - [anon_sym_PIPE_EQ] = ACTIONS(1238), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1238), - [anon_sym_BANG_EQ] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_CARET] = ACTIONS(1240), - [anon_sym_orelse] = ACTIONS(1238), - [anon_sym_catch] = ACTIONS(1238), - [anon_sym_LT_LT] = ACTIONS(1240), - [anon_sym_GT_GT] = ACTIONS(1240), - [anon_sym_LT_LT_PIPE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1240), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_PLUS_PLUS] = ACTIONS(1238), - [anon_sym_PLUS_PERCENT] = ACTIONS(1240), - [anon_sym_DASH_PERCENT] = ACTIONS(1240), - [anon_sym_PLUS_PIPE] = ACTIONS(1240), - [anon_sym_DASH_PIPE] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1240), - [anon_sym_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_STAR] = ACTIONS(1238), - [anon_sym_STAR_PERCENT] = ACTIONS(1240), - [anon_sym_STAR_PIPE] = ACTIONS(1240), - [anon_sym_align] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_STAR] = ACTIONS(1206), - [anon_sym_DOT_QMARK] = ACTIONS(1206), + [sym_FieldOrFnCall] = STATE(740), + [sym_SuffixOp] = STATE(753), + [aux_sym_SuffixExpr_repeat1] = STATE(740), + [anon_sym_COMMA] = ACTIONS(1261), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1263), + [anon_sym_COLON] = ACTIONS(1261), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_else] = ACTIONS(1261), + [anon_sym_or] = ACTIONS(1263), + [anon_sym_and] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_DOT] = ACTIONS(1202), + [anon_sym_RPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACK] = ACTIONS(1261), + [anon_sym_linksection] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1263), + [anon_sym_STAR] = ACTIONS(1263), + [anon_sym_EQ_GT] = ACTIONS(1261), + [anon_sym_STAR_EQ] = ACTIONS(1261), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1261), + [anon_sym_SLASH_EQ] = ACTIONS(1261), + [anon_sym_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_PLUS_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1261), + [anon_sym_DASH_EQ] = ACTIONS(1261), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_EQ] = ACTIONS(1261), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1261), + [anon_sym_GT_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP_EQ] = ACTIONS(1261), + [anon_sym_CARET_EQ] = ACTIONS(1261), + [anon_sym_PIPE_EQ] = ACTIONS(1261), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1261), + [anon_sym_EQ_EQ] = ACTIONS(1261), + [anon_sym_BANG_EQ] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1263), + [anon_sym_GT] = ACTIONS(1263), + [anon_sym_LT_EQ] = ACTIONS(1261), + [anon_sym_GT_EQ] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1263), + [anon_sym_CARET] = ACTIONS(1263), + [anon_sym_orelse] = ACTIONS(1261), + [anon_sym_catch] = ACTIONS(1261), + [anon_sym_LT_LT] = ACTIONS(1263), + [anon_sym_GT_GT] = ACTIONS(1263), + [anon_sym_LT_LT_PIPE] = ACTIONS(1263), + [anon_sym_PLUS] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1263), + [anon_sym_PLUS_PLUS] = ACTIONS(1261), + [anon_sym_PLUS_PERCENT] = ACTIONS(1263), + [anon_sym_DASH_PERCENT] = ACTIONS(1263), + [anon_sym_PLUS_PIPE] = ACTIONS(1263), + [anon_sym_DASH_PIPE] = ACTIONS(1263), + [anon_sym_PIPE_PIPE] = ACTIONS(1261), + [anon_sym_SLASH] = ACTIONS(1263), + [anon_sym_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_STAR] = ACTIONS(1261), + [anon_sym_STAR_PERCENT] = ACTIONS(1263), + [anon_sym_STAR_PIPE] = ACTIONS(1263), + [anon_sym_align] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_DOT_STAR] = ACTIONS(1208), + [anon_sym_DOT_QMARK] = ACTIONS(1208), [sym_line_comment] = ACTIONS(95), }, [751] = { - [sym__ElseTypeExprTail] = STATE(800), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1288), - [anon_sym_or] = ACTIONS(1290), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_linksection] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_orelse] = ACTIONS(1288), - [anon_sym_catch] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_LT_LT_PIPE] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_PLUS_PERCENT] = ACTIONS(1290), - [anon_sym_DASH_PERCENT] = ACTIONS(1290), - [anon_sym_PLUS_PIPE] = ACTIONS(1290), - [anon_sym_DASH_PIPE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1290), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_STAR_PERCENT] = ACTIONS(1290), - [anon_sym_STAR_PIPE] = ACTIONS(1290), - [anon_sym_align] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_DOT_STAR] = ACTIONS(1288), - [anon_sym_DOT_QMARK] = ACTIONS(1288), + [sym_FnCallArguments] = STATE(807), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_or] = ACTIONS(1288), + [anon_sym_and] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_linksection] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1286), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_orelse] = ACTIONS(1286), + [anon_sym_catch] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_LT_LT_PIPE] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_PLUS_PERCENT] = ACTIONS(1288), + [anon_sym_DASH_PERCENT] = ACTIONS(1288), + [anon_sym_PLUS_PIPE] = ACTIONS(1288), + [anon_sym_DASH_PIPE] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1286), + [anon_sym_STAR_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_PIPE] = ACTIONS(1288), + [anon_sym_align] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DOT_STAR] = ACTIONS(1286), + [anon_sym_DOT_QMARK] = ACTIONS(1286), [sym_line_comment] = ACTIONS(95), }, [752] = { - [anon_sym_COMMA] = ACTIONS(532), - [anon_sym_SEMI] = ACTIONS(532), - [anon_sym_BANG] = ACTIONS(534), - [anon_sym_COLON] = ACTIONS(532), - [anon_sym_EQ] = ACTIONS(534), - [anon_sym_else] = ACTIONS(532), - [anon_sym_or] = ACTIONS(534), - [anon_sym_and] = ACTIONS(532), - [anon_sym_LBRACE] = ACTIONS(532), - [anon_sym_RBRACE] = ACTIONS(532), - [anon_sym_DOT] = ACTIONS(534), - [anon_sym_LPAREN] = ACTIONS(532), - [anon_sym_RPAREN] = ACTIONS(532), - [anon_sym_LBRACK] = ACTIONS(532), - [anon_sym_RBRACK] = ACTIONS(532), - [anon_sym_DASH_GT] = ACTIONS(1292), - [anon_sym_linksection] = ACTIONS(532), - [anon_sym_PIPE] = ACTIONS(534), - [anon_sym_STAR] = ACTIONS(534), - [anon_sym_EQ_GT] = ACTIONS(532), - [anon_sym_STAR_EQ] = ACTIONS(532), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(532), - [anon_sym_SLASH_EQ] = ACTIONS(532), - [anon_sym_PERCENT_EQ] = ACTIONS(532), - [anon_sym_PLUS_EQ] = ACTIONS(532), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(532), - [anon_sym_DASH_EQ] = ACTIONS(532), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(532), - [anon_sym_LT_LT_EQ] = ACTIONS(532), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(532), - [anon_sym_GT_GT_EQ] = ACTIONS(532), - [anon_sym_AMP_EQ] = ACTIONS(532), - [anon_sym_CARET_EQ] = ACTIONS(532), - [anon_sym_PIPE_EQ] = ACTIONS(532), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(532), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(532), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(532), - [anon_sym_EQ_EQ] = ACTIONS(532), - [anon_sym_BANG_EQ] = ACTIONS(532), - [anon_sym_LT] = ACTIONS(534), - [anon_sym_GT] = ACTIONS(534), - [anon_sym_LT_EQ] = ACTIONS(532), - [anon_sym_GT_EQ] = ACTIONS(532), - [anon_sym_AMP] = ACTIONS(534), - [anon_sym_CARET] = ACTIONS(534), - [anon_sym_orelse] = ACTIONS(532), - [anon_sym_catch] = ACTIONS(532), - [anon_sym_LT_LT] = ACTIONS(534), - [anon_sym_GT_GT] = ACTIONS(534), - [anon_sym_LT_LT_PIPE] = ACTIONS(534), - [anon_sym_PLUS] = ACTIONS(534), - [anon_sym_DASH] = ACTIONS(534), - [anon_sym_PLUS_PLUS] = ACTIONS(532), - [anon_sym_PLUS_PERCENT] = ACTIONS(534), - [anon_sym_DASH_PERCENT] = ACTIONS(534), - [anon_sym_PLUS_PIPE] = ACTIONS(534), - [anon_sym_DASH_PIPE] = ACTIONS(534), - [anon_sym_PIPE_PIPE] = ACTIONS(532), - [anon_sym_SLASH] = ACTIONS(534), - [anon_sym_PERCENT] = ACTIONS(534), - [anon_sym_STAR_STAR] = ACTIONS(532), - [anon_sym_STAR_PERCENT] = ACTIONS(534), - [anon_sym_STAR_PIPE] = ACTIONS(534), - [anon_sym_align] = ACTIONS(532), - [anon_sym_DOT_DOT] = ACTIONS(532), - [anon_sym_DOT_STAR] = ACTIONS(532), - [anon_sym_DOT_QMARK] = ACTIONS(532), + [anon_sym_COMMA] = ACTIONS(568), + [anon_sym_SEMI] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(570), + [anon_sym_COLON] = ACTIONS(568), + [anon_sym_EQ] = ACTIONS(570), + [anon_sym_else] = ACTIONS(568), + [anon_sym_or] = ACTIONS(570), + [anon_sym_and] = ACTIONS(568), + [anon_sym_LBRACE] = ACTIONS(568), + [anon_sym_RBRACE] = ACTIONS(568), + [anon_sym_DOT] = ACTIONS(570), + [anon_sym_LPAREN] = ACTIONS(568), + [anon_sym_RPAREN] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(568), + [anon_sym_RBRACK] = ACTIONS(568), + [anon_sym_DASH_GT] = ACTIONS(1293), + [anon_sym_linksection] = ACTIONS(568), + [anon_sym_PIPE] = ACTIONS(570), + [anon_sym_STAR] = ACTIONS(570), + [anon_sym_EQ_GT] = ACTIONS(568), + [anon_sym_STAR_EQ] = ACTIONS(568), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(568), + [anon_sym_SLASH_EQ] = ACTIONS(568), + [anon_sym_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_EQ] = ACTIONS(568), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(568), + [anon_sym_DASH_EQ] = ACTIONS(568), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(568), + [anon_sym_LT_LT_EQ] = ACTIONS(568), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(568), + [anon_sym_GT_GT_EQ] = ACTIONS(568), + [anon_sym_AMP_EQ] = ACTIONS(568), + [anon_sym_CARET_EQ] = ACTIONS(568), + [anon_sym_PIPE_EQ] = ACTIONS(568), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(568), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(568), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(568), + [anon_sym_EQ_EQ] = ACTIONS(568), + [anon_sym_BANG_EQ] = ACTIONS(568), + [anon_sym_LT] = ACTIONS(570), + [anon_sym_GT] = ACTIONS(570), + [anon_sym_LT_EQ] = ACTIONS(568), + [anon_sym_GT_EQ] = ACTIONS(568), + [anon_sym_AMP] = ACTIONS(570), + [anon_sym_CARET] = ACTIONS(570), + [anon_sym_orelse] = ACTIONS(568), + [anon_sym_catch] = ACTIONS(568), + [anon_sym_LT_LT] = ACTIONS(570), + [anon_sym_GT_GT] = ACTIONS(570), + [anon_sym_LT_LT_PIPE] = ACTIONS(570), + [anon_sym_PLUS] = ACTIONS(570), + [anon_sym_DASH] = ACTIONS(570), + [anon_sym_PLUS_PLUS] = ACTIONS(568), + [anon_sym_PLUS_PERCENT] = ACTIONS(570), + [anon_sym_DASH_PERCENT] = ACTIONS(570), + [anon_sym_PLUS_PIPE] = ACTIONS(570), + [anon_sym_DASH_PIPE] = ACTIONS(570), + [anon_sym_PIPE_PIPE] = ACTIONS(568), + [anon_sym_SLASH] = ACTIONS(570), + [anon_sym_PERCENT] = ACTIONS(570), + [anon_sym_STAR_STAR] = ACTIONS(568), + [anon_sym_STAR_PERCENT] = ACTIONS(570), + [anon_sym_STAR_PIPE] = ACTIONS(570), + [anon_sym_align] = ACTIONS(568), + [anon_sym_DOT_DOT] = ACTIONS(568), + [anon_sym_DOT_STAR] = ACTIONS(568), + [anon_sym_DOT_QMARK] = ACTIONS(568), [sym_line_comment] = ACTIONS(95), }, [753] = { - [sym_FnCallArguments] = STATE(774), - [anon_sym_COMMA] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1298), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_linksection] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_EQ_GT] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_orelse] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_LT_LT_PIPE] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_PLUS_PERCENT] = ACTIONS(1296), - [anon_sym_DASH_PERCENT] = ACTIONS(1296), - [anon_sym_PLUS_PIPE] = ACTIONS(1296), - [anon_sym_DASH_PIPE] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_STAR_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_PIPE] = ACTIONS(1296), - [anon_sym_align] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DOT_STAR] = ACTIONS(1294), - [anon_sym_DOT_QMARK] = ACTIONS(1294), + [sym_FnCallArguments] = STATE(807), + [anon_sym_COMMA] = ACTIONS(1286), + [anon_sym_SEMI] = ACTIONS(1286), + [anon_sym_BANG] = ACTIONS(1288), + [anon_sym_COLON] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1288), + [anon_sym_else] = ACTIONS(1286), + [anon_sym_or] = ACTIONS(1288), + [anon_sym_and] = ACTIONS(1286), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_RBRACE] = ACTIONS(1286), + [anon_sym_DOT] = ACTIONS(1288), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1286), + [anon_sym_LBRACK] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1286), + [anon_sym_linksection] = ACTIONS(1286), + [anon_sym_PIPE] = ACTIONS(1288), + [anon_sym_STAR] = ACTIONS(1288), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_STAR_EQ] = ACTIONS(1286), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1286), + [anon_sym_SLASH_EQ] = ACTIONS(1286), + [anon_sym_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_PLUS_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1286), + [anon_sym_DASH_EQ] = ACTIONS(1286), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_EQ] = ACTIONS(1286), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1286), + [anon_sym_GT_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP_EQ] = ACTIONS(1286), + [anon_sym_CARET_EQ] = ACTIONS(1286), + [anon_sym_PIPE_EQ] = ACTIONS(1286), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1286), + [anon_sym_EQ_EQ] = ACTIONS(1286), + [anon_sym_BANG_EQ] = ACTIONS(1286), + [anon_sym_LT] = ACTIONS(1288), + [anon_sym_GT] = ACTIONS(1288), + [anon_sym_LT_EQ] = ACTIONS(1286), + [anon_sym_GT_EQ] = ACTIONS(1286), + [anon_sym_AMP] = ACTIONS(1288), + [anon_sym_CARET] = ACTIONS(1288), + [anon_sym_orelse] = ACTIONS(1286), + [anon_sym_catch] = ACTIONS(1286), + [anon_sym_LT_LT] = ACTIONS(1288), + [anon_sym_GT_GT] = ACTIONS(1288), + [anon_sym_LT_LT_PIPE] = ACTIONS(1288), + [anon_sym_PLUS] = ACTIONS(1288), + [anon_sym_DASH] = ACTIONS(1288), + [anon_sym_PLUS_PLUS] = ACTIONS(1286), + [anon_sym_PLUS_PERCENT] = ACTIONS(1288), + [anon_sym_DASH_PERCENT] = ACTIONS(1288), + [anon_sym_PLUS_PIPE] = ACTIONS(1288), + [anon_sym_DASH_PIPE] = ACTIONS(1288), + [anon_sym_PIPE_PIPE] = ACTIONS(1286), + [anon_sym_SLASH] = ACTIONS(1288), + [anon_sym_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_STAR] = ACTIONS(1286), + [anon_sym_STAR_PERCENT] = ACTIONS(1288), + [anon_sym_STAR_PIPE] = ACTIONS(1288), + [anon_sym_align] = ACTIONS(1286), + [anon_sym_DOT_DOT] = ACTIONS(1286), + [anon_sym_DOT_STAR] = ACTIONS(1286), + [anon_sym_DOT_QMARK] = ACTIONS(1286), [sym_line_comment] = ACTIONS(95), }, [754] = { - [sym_FnCallArguments] = STATE(774), - [anon_sym_COMMA] = ACTIONS(1294), - [anon_sym_SEMI] = ACTIONS(1294), - [anon_sym_BANG] = ACTIONS(1296), - [anon_sym_COLON] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_else] = ACTIONS(1294), - [anon_sym_or] = ACTIONS(1296), - [anon_sym_and] = ACTIONS(1294), - [anon_sym_LBRACE] = ACTIONS(1294), - [anon_sym_RBRACE] = ACTIONS(1294), - [anon_sym_DOT] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1294), - [anon_sym_LBRACK] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_linksection] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_EQ_GT] = ACTIONS(1294), - [anon_sym_STAR_EQ] = ACTIONS(1294), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1294), - [anon_sym_SLASH_EQ] = ACTIONS(1294), - [anon_sym_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_PLUS_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1294), - [anon_sym_DASH_EQ] = ACTIONS(1294), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1294), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1294), - [anon_sym_EQ_EQ] = ACTIONS(1294), - [anon_sym_BANG_EQ] = ACTIONS(1294), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_orelse] = ACTIONS(1294), - [anon_sym_catch] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_LT_LT_PIPE] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1294), - [anon_sym_PLUS_PERCENT] = ACTIONS(1296), - [anon_sym_DASH_PERCENT] = ACTIONS(1296), - [anon_sym_PLUS_PIPE] = ACTIONS(1296), - [anon_sym_DASH_PIPE] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1294), - [anon_sym_STAR_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_PIPE] = ACTIONS(1296), - [anon_sym_align] = ACTIONS(1294), - [anon_sym_DOT_DOT] = ACTIONS(1294), - [anon_sym_DOT_STAR] = ACTIONS(1294), - [anon_sym_DOT_QMARK] = ACTIONS(1294), + [sym_FnCallArguments] = STATE(831), + [anon_sym_COMMA] = ACTIONS(1295), + [anon_sym_SEMI] = ACTIONS(1295), + [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_COLON] = ACTIONS(1295), + [anon_sym_EQ] = ACTIONS(1297), + [anon_sym_else] = ACTIONS(1295), + [anon_sym_or] = ACTIONS(1297), + [anon_sym_and] = ACTIONS(1295), + [anon_sym_LBRACE] = ACTIONS(1295), + [anon_sym_RBRACE] = ACTIONS(1295), + [anon_sym_DOT] = ACTIONS(1297), + [anon_sym_LPAREN] = ACTIONS(1204), + [anon_sym_RPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_RBRACK] = ACTIONS(1295), + [anon_sym_linksection] = ACTIONS(1295), + [anon_sym_PIPE] = ACTIONS(1297), + [anon_sym_STAR] = ACTIONS(1297), + [anon_sym_EQ_GT] = ACTIONS(1295), + [anon_sym_STAR_EQ] = ACTIONS(1295), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1295), + [anon_sym_SLASH_EQ] = ACTIONS(1295), + [anon_sym_PERCENT_EQ] = ACTIONS(1295), + [anon_sym_PLUS_EQ] = ACTIONS(1295), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1295), + [anon_sym_DASH_EQ] = ACTIONS(1295), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1295), + [anon_sym_LT_LT_EQ] = ACTIONS(1295), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1295), + [anon_sym_GT_GT_EQ] = ACTIONS(1295), + [anon_sym_AMP_EQ] = ACTIONS(1295), + [anon_sym_CARET_EQ] = ACTIONS(1295), + [anon_sym_PIPE_EQ] = ACTIONS(1295), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1295), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1295), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1295), + [anon_sym_EQ_EQ] = ACTIONS(1295), + [anon_sym_BANG_EQ] = ACTIONS(1295), + [anon_sym_LT] = ACTIONS(1297), + [anon_sym_GT] = ACTIONS(1297), + [anon_sym_LT_EQ] = ACTIONS(1295), + [anon_sym_GT_EQ] = ACTIONS(1295), + [anon_sym_AMP] = ACTIONS(1297), + [anon_sym_CARET] = ACTIONS(1297), + [anon_sym_orelse] = ACTIONS(1295), + [anon_sym_catch] = ACTIONS(1295), + [anon_sym_LT_LT] = ACTIONS(1297), + [anon_sym_GT_GT] = ACTIONS(1297), + [anon_sym_LT_LT_PIPE] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1297), + [anon_sym_PLUS_PLUS] = ACTIONS(1295), + [anon_sym_PLUS_PERCENT] = ACTIONS(1297), + [anon_sym_DASH_PERCENT] = ACTIONS(1297), + [anon_sym_PLUS_PIPE] = ACTIONS(1297), + [anon_sym_DASH_PIPE] = ACTIONS(1297), + [anon_sym_PIPE_PIPE] = ACTIONS(1295), + [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PERCENT] = ACTIONS(1297), + [anon_sym_STAR_STAR] = ACTIONS(1295), + [anon_sym_STAR_PERCENT] = ACTIONS(1297), + [anon_sym_STAR_PIPE] = ACTIONS(1297), + [anon_sym_align] = ACTIONS(1295), + [anon_sym_DOT_DOT] = ACTIONS(1295), + [anon_sym_DOT_STAR] = ACTIONS(1295), + [anon_sym_DOT_QMARK] = ACTIONS(1295), [sym_line_comment] = ACTIONS(95), }, [755] = { - [sym__ElseTypeExprTail] = STATE(803), - [anon_sym_COMMA] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_COLON] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1303), - [anon_sym_else] = ACTIONS(1301), - [anon_sym_or] = ACTIONS(1303), - [anon_sym_and] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_RBRACK] = ACTIONS(1301), - [anon_sym_linksection] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_STAR_EQ] = ACTIONS(1301), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1301), - [anon_sym_SLASH_EQ] = ACTIONS(1301), - [anon_sym_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_PLUS_EQ] = ACTIONS(1301), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1301), - [anon_sym_DASH_EQ] = ACTIONS(1301), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1301), - [anon_sym_LT_LT_EQ] = ACTIONS(1301), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1301), - [anon_sym_GT_GT_EQ] = ACTIONS(1301), - [anon_sym_AMP_EQ] = ACTIONS(1301), - [anon_sym_CARET_EQ] = ACTIONS(1301), - [anon_sym_PIPE_EQ] = ACTIONS(1301), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1303), - [anon_sym_LT_EQ] = ACTIONS(1301), - [anon_sym_GT_EQ] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_orelse] = ACTIONS(1301), - [anon_sym_catch] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_LT_LT_PIPE] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_PLUS_PERCENT] = ACTIONS(1303), - [anon_sym_DASH_PERCENT] = ACTIONS(1303), - [anon_sym_PLUS_PIPE] = ACTIONS(1303), - [anon_sym_DASH_PIPE] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1303), - [anon_sym_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_STAR] = ACTIONS(1301), - [anon_sym_STAR_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_PIPE] = ACTIONS(1303), - [anon_sym_align] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_DOT_STAR] = ACTIONS(1301), - [anon_sym_DOT_QMARK] = ACTIONS(1301), - [sym_line_comment] = ACTIONS(95), + [anon_sym_COMMA] = ACTIONS(1299), + [anon_sym_SEMI] = ACTIONS(1299), + [anon_sym_BANG] = ACTIONS(1301), + [anon_sym_COLON] = ACTIONS(1299), + [anon_sym_EQ] = ACTIONS(1301), + [anon_sym_else] = ACTIONS(1299), + [anon_sym_or] = ACTIONS(1301), + [anon_sym_and] = ACTIONS(1299), + [anon_sym_LBRACE] = ACTIONS(1299), + [anon_sym_RBRACE] = ACTIONS(1299), + [anon_sym_DOT] = ACTIONS(1301), + [anon_sym_LPAREN] = ACTIONS(1299), + [anon_sym_RPAREN] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_RBRACK] = ACTIONS(1299), + [anon_sym_linksection] = ACTIONS(1299), + [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_EQ_GT] = ACTIONS(1299), + [anon_sym_STAR_EQ] = ACTIONS(1299), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1299), + [anon_sym_SLASH_EQ] = ACTIONS(1299), + [anon_sym_PERCENT_EQ] = ACTIONS(1299), + [anon_sym_PLUS_EQ] = ACTIONS(1299), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1299), + [anon_sym_DASH_EQ] = ACTIONS(1299), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1299), + [anon_sym_LT_LT_EQ] = ACTIONS(1299), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1299), + [anon_sym_GT_GT_EQ] = ACTIONS(1299), + [anon_sym_AMP_EQ] = ACTIONS(1299), + [anon_sym_CARET_EQ] = ACTIONS(1299), + [anon_sym_PIPE_EQ] = ACTIONS(1299), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1299), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1299), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1299), + [anon_sym_EQ_EQ] = ACTIONS(1299), + [anon_sym_BANG_EQ] = ACTIONS(1299), + [anon_sym_LT] = ACTIONS(1301), + [anon_sym_GT] = ACTIONS(1301), + [anon_sym_LT_EQ] = ACTIONS(1299), + [anon_sym_GT_EQ] = ACTIONS(1299), + [anon_sym_AMP] = ACTIONS(1301), + [anon_sym_CARET] = ACTIONS(1301), + [anon_sym_orelse] = ACTIONS(1299), + [anon_sym_catch] = ACTIONS(1299), + [anon_sym_LT_LT] = ACTIONS(1301), + [anon_sym_GT_GT] = ACTIONS(1301), + [anon_sym_LT_LT_PIPE] = ACTIONS(1301), + [anon_sym_PLUS] = ACTIONS(1301), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_PLUS_PLUS] = ACTIONS(1299), + [anon_sym_PLUS_PERCENT] = ACTIONS(1301), + [anon_sym_DASH_PERCENT] = ACTIONS(1301), + [anon_sym_PLUS_PIPE] = ACTIONS(1301), + [anon_sym_DASH_PIPE] = ACTIONS(1301), + [anon_sym_PIPE_PIPE] = ACTIONS(1299), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym_PERCENT] = ACTIONS(1301), + [anon_sym_STAR_STAR] = ACTIONS(1299), + [anon_sym_STAR_PERCENT] = ACTIONS(1301), + [anon_sym_STAR_PIPE] = ACTIONS(1301), + [anon_sym_align] = ACTIONS(1299), + [anon_sym_DOT_DOT] = ACTIONS(1299), + [anon_sym_DOT_STAR] = ACTIONS(1299), + [anon_sym_DOT_QMARK] = ACTIONS(1299), + [sym_line_comment] = ACTIONS(95), + [anon_sym_BSLASH_BSLASH] = ACTIONS(1299), }, [756] = { - [sym_FnCallArguments] = STATE(830), - [anon_sym_COMMA] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_BANG] = ACTIONS(1307), - [anon_sym_COLON] = ACTIONS(1305), - [anon_sym_EQ] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1305), - [anon_sym_or] = ACTIONS(1307), - [anon_sym_and] = ACTIONS(1305), - [anon_sym_LBRACE] = ACTIONS(1305), - [anon_sym_RBRACE] = ACTIONS(1305), - [anon_sym_DOT] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1202), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_LBRACK] = ACTIONS(1305), - [anon_sym_RBRACK] = ACTIONS(1305), - [anon_sym_linksection] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1307), - [anon_sym_STAR] = ACTIONS(1307), - [anon_sym_EQ_GT] = ACTIONS(1305), - [anon_sym_STAR_EQ] = ACTIONS(1305), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1305), - [anon_sym_SLASH_EQ] = ACTIONS(1305), - [anon_sym_PERCENT_EQ] = ACTIONS(1305), - [anon_sym_PLUS_EQ] = ACTIONS(1305), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1305), - [anon_sym_DASH_EQ] = ACTIONS(1305), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1305), - [anon_sym_LT_LT_EQ] = ACTIONS(1305), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1305), - [anon_sym_GT_GT_EQ] = ACTIONS(1305), - [anon_sym_AMP_EQ] = ACTIONS(1305), - [anon_sym_CARET_EQ] = ACTIONS(1305), - [anon_sym_PIPE_EQ] = ACTIONS(1305), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1305), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1305), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1305), - [anon_sym_EQ_EQ] = ACTIONS(1305), - [anon_sym_BANG_EQ] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1307), - [anon_sym_GT] = ACTIONS(1307), - [anon_sym_LT_EQ] = ACTIONS(1305), - [anon_sym_GT_EQ] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1307), - [anon_sym_CARET] = ACTIONS(1307), - [anon_sym_orelse] = ACTIONS(1305), - [anon_sym_catch] = ACTIONS(1305), - [anon_sym_LT_LT] = ACTIONS(1307), - [anon_sym_GT_GT] = ACTIONS(1307), - [anon_sym_LT_LT_PIPE] = ACTIONS(1307), - [anon_sym_PLUS] = ACTIONS(1307), - [anon_sym_DASH] = ACTIONS(1307), - [anon_sym_PLUS_PLUS] = ACTIONS(1305), - [anon_sym_PLUS_PERCENT] = ACTIONS(1307), - [anon_sym_DASH_PERCENT] = ACTIONS(1307), - [anon_sym_PLUS_PIPE] = ACTIONS(1307), - [anon_sym_DASH_PIPE] = ACTIONS(1307), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_SLASH] = ACTIONS(1307), - [anon_sym_PERCENT] = ACTIONS(1307), - [anon_sym_STAR_STAR] = ACTIONS(1305), - [anon_sym_STAR_PERCENT] = ACTIONS(1307), - [anon_sym_STAR_PIPE] = ACTIONS(1307), - [anon_sym_align] = ACTIONS(1305), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_STAR] = ACTIONS(1305), - [anon_sym_DOT_QMARK] = ACTIONS(1305), + [sym__ElseTypeExprTail] = STATE(774), + [anon_sym_COMMA] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1303), + [anon_sym_or] = ACTIONS(1305), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_linksection] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_EQ_GT] = ACTIONS(1303), + [anon_sym_STAR_EQ] = ACTIONS(1303), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1303), + [anon_sym_SLASH_EQ] = ACTIONS(1303), + [anon_sym_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1303), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1303), + [anon_sym_DASH_EQ] = ACTIONS(1303), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1303), + [anon_sym_LT_LT_EQ] = ACTIONS(1303), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1303), + [anon_sym_GT_GT_EQ] = ACTIONS(1303), + [anon_sym_AMP_EQ] = ACTIONS(1303), + [anon_sym_CARET_EQ] = ACTIONS(1303), + [anon_sym_PIPE_EQ] = ACTIONS(1303), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym_orelse] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_LT_LT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1305), + [anon_sym_LT_LT_PIPE] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_PLUS_PERCENT] = ACTIONS(1305), + [anon_sym_DASH_PERCENT] = ACTIONS(1305), + [anon_sym_PLUS_PIPE] = ACTIONS(1305), + [anon_sym_DASH_PIPE] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_STAR_PERCENT] = ACTIONS(1305), + [anon_sym_STAR_PIPE] = ACTIONS(1305), + [anon_sym_align] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_STAR] = ACTIONS(1303), + [anon_sym_DOT_QMARK] = ACTIONS(1303), [sym_line_comment] = ACTIONS(95), }, [757] = { - [sym__ElseTypeExprTail] = STATE(820), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1309), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1309), - [anon_sym_or] = ACTIONS(1311), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_RBRACK] = ACTIONS(1309), - [anon_sym_linksection] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_EQ_GT] = ACTIONS(1309), - [anon_sym_STAR_EQ] = ACTIONS(1309), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1309), - [anon_sym_SLASH_EQ] = ACTIONS(1309), - [anon_sym_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_PLUS_EQ] = ACTIONS(1309), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1309), - [anon_sym_DASH_EQ] = ACTIONS(1309), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1309), - [anon_sym_LT_LT_EQ] = ACTIONS(1309), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1309), - [anon_sym_GT_GT_EQ] = ACTIONS(1309), - [anon_sym_AMP_EQ] = ACTIONS(1309), - [anon_sym_CARET_EQ] = ACTIONS(1309), - [anon_sym_PIPE_EQ] = ACTIONS(1309), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_GT] = ACTIONS(1311), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_orelse] = ACTIONS(1309), - [anon_sym_catch] = ACTIONS(1309), - [anon_sym_LT_LT] = ACTIONS(1311), - [anon_sym_GT_GT] = ACTIONS(1311), - [anon_sym_LT_LT_PIPE] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_PLUS_PERCENT] = ACTIONS(1311), - [anon_sym_DASH_PERCENT] = ACTIONS(1311), - [anon_sym_PLUS_PIPE] = ACTIONS(1311), - [anon_sym_DASH_PIPE] = ACTIONS(1311), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1311), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_STAR_PERCENT] = ACTIONS(1311), - [anon_sym_STAR_PIPE] = ACTIONS(1311), - [anon_sym_align] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_STAR] = ACTIONS(1309), - [anon_sym_DOT_QMARK] = ACTIONS(1309), + [sym__ElseTypeExprTail] = STATE(775), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1307), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1307), + [anon_sym_or] = ACTIONS(1309), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_linksection] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_STAR_EQ] = ACTIONS(1307), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1307), + [anon_sym_SLASH_EQ] = ACTIONS(1307), + [anon_sym_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1307), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1307), + [anon_sym_DASH_EQ] = ACTIONS(1307), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1307), + [anon_sym_LT_LT_EQ] = ACTIONS(1307), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1307), + [anon_sym_GT_GT_EQ] = ACTIONS(1307), + [anon_sym_AMP_EQ] = ACTIONS(1307), + [anon_sym_CARET_EQ] = ACTIONS(1307), + [anon_sym_PIPE_EQ] = ACTIONS(1307), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_orelse] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_LT_LT] = ACTIONS(1309), + [anon_sym_GT_GT] = ACTIONS(1309), + [anon_sym_LT_LT_PIPE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_PLUS_PERCENT] = ACTIONS(1309), + [anon_sym_DASH_PERCENT] = ACTIONS(1309), + [anon_sym_PLUS_PIPE] = ACTIONS(1309), + [anon_sym_DASH_PIPE] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1309), + [anon_sym_PERCENT] = ACTIONS(1309), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_STAR_PERCENT] = ACTIONS(1309), + [anon_sym_STAR_PIPE] = ACTIONS(1309), + [anon_sym_align] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_STAR] = ACTIONS(1307), + [anon_sym_DOT_QMARK] = ACTIONS(1307), [sym_line_comment] = ACTIONS(95), }, [758] = { - [anon_sym_COMMA] = ACTIONS(1313), - [anon_sym_SEMI] = ACTIONS(1313), - [anon_sym_BANG] = ACTIONS(1315), - [anon_sym_COLON] = ACTIONS(1313), - [anon_sym_EQ] = ACTIONS(1315), - [anon_sym_else] = ACTIONS(1313), - [anon_sym_or] = ACTIONS(1315), - [anon_sym_and] = ACTIONS(1313), - [anon_sym_LBRACE] = ACTIONS(1313), - [anon_sym_RBRACE] = ACTIONS(1313), - [anon_sym_DOT] = ACTIONS(1315), - [anon_sym_LPAREN] = ACTIONS(1313), - [anon_sym_RPAREN] = ACTIONS(1313), - [anon_sym_LBRACK] = ACTIONS(1313), - [anon_sym_RBRACK] = ACTIONS(1313), - [anon_sym_linksection] = ACTIONS(1313), - [anon_sym_PIPE] = ACTIONS(1315), - [anon_sym_STAR] = ACTIONS(1315), - [anon_sym_EQ_GT] = ACTIONS(1313), - [anon_sym_STAR_EQ] = ACTIONS(1313), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1313), - [anon_sym_SLASH_EQ] = ACTIONS(1313), - [anon_sym_PERCENT_EQ] = ACTIONS(1313), - [anon_sym_PLUS_EQ] = ACTIONS(1313), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1313), - [anon_sym_DASH_EQ] = ACTIONS(1313), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1313), - [anon_sym_LT_LT_EQ] = ACTIONS(1313), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1313), - [anon_sym_GT_GT_EQ] = ACTIONS(1313), - [anon_sym_AMP_EQ] = ACTIONS(1313), - [anon_sym_CARET_EQ] = ACTIONS(1313), - [anon_sym_PIPE_EQ] = ACTIONS(1313), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1313), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1313), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1313), - [anon_sym_EQ_EQ] = ACTIONS(1313), - [anon_sym_BANG_EQ] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(1315), - [anon_sym_GT] = ACTIONS(1315), - [anon_sym_LT_EQ] = ACTIONS(1313), - [anon_sym_GT_EQ] = ACTIONS(1313), - [anon_sym_AMP] = ACTIONS(1315), - [anon_sym_CARET] = ACTIONS(1315), - [anon_sym_orelse] = ACTIONS(1313), - [anon_sym_catch] = ACTIONS(1313), - [anon_sym_LT_LT] = ACTIONS(1315), - [anon_sym_GT_GT] = ACTIONS(1315), - [anon_sym_LT_LT_PIPE] = ACTIONS(1315), - [anon_sym_PLUS] = ACTIONS(1315), - [anon_sym_DASH] = ACTIONS(1315), - [anon_sym_PLUS_PLUS] = ACTIONS(1313), - [anon_sym_PLUS_PERCENT] = ACTIONS(1315), - [anon_sym_DASH_PERCENT] = ACTIONS(1315), - [anon_sym_PLUS_PIPE] = ACTIONS(1315), - [anon_sym_DASH_PIPE] = ACTIONS(1315), - [anon_sym_PIPE_PIPE] = ACTIONS(1313), - [anon_sym_SLASH] = ACTIONS(1315), - [anon_sym_PERCENT] = ACTIONS(1315), - [anon_sym_STAR_STAR] = ACTIONS(1313), - [anon_sym_STAR_PERCENT] = ACTIONS(1315), - [anon_sym_STAR_PIPE] = ACTIONS(1315), - [anon_sym_align] = ACTIONS(1313), - [anon_sym_DOT_DOT] = ACTIONS(1313), - [anon_sym_DOT_STAR] = ACTIONS(1313), - [anon_sym_DOT_QMARK] = ACTIONS(1313), + [sym__ElseTypeExprTail] = STATE(804), + [anon_sym_COMMA] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_COLON] = ACTIONS(1311), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_and] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_linksection] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_STAR_EQ] = ACTIONS(1311), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1311), + [anon_sym_SLASH_EQ] = ACTIONS(1311), + [anon_sym_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1311), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1311), + [anon_sym_DASH_EQ] = ACTIONS(1311), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1311), + [anon_sym_LT_LT_EQ] = ACTIONS(1311), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1311), + [anon_sym_GT_GT_EQ] = ACTIONS(1311), + [anon_sym_AMP_EQ] = ACTIONS(1311), + [anon_sym_CARET_EQ] = ACTIONS(1311), + [anon_sym_PIPE_EQ] = ACTIONS(1311), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_BANG_EQ] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_orelse] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1313), + [anon_sym_LT_LT_PIPE] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_PLUS_PERCENT] = ACTIONS(1313), + [anon_sym_DASH_PERCENT] = ACTIONS(1313), + [anon_sym_PLUS_PIPE] = ACTIONS(1313), + [anon_sym_DASH_PIPE] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_STAR_STAR] = ACTIONS(1311), + [anon_sym_STAR_PERCENT] = ACTIONS(1313), + [anon_sym_STAR_PIPE] = ACTIONS(1313), + [anon_sym_align] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_STAR] = ACTIONS(1311), + [anon_sym_DOT_QMARK] = ACTIONS(1311), [sym_line_comment] = ACTIONS(95), }, [759] = { - [sym__ElseTypeExprTail] = STATE(803), - [anon_sym_COMMA] = ACTIONS(1301), - [anon_sym_SEMI] = ACTIONS(1301), - [anon_sym_BANG] = ACTIONS(1303), - [anon_sym_EQ] = ACTIONS(1303), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1303), - [anon_sym_and] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1301), - [anon_sym_RBRACE] = ACTIONS(1301), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_LBRACK] = ACTIONS(1301), - [anon_sym_RBRACK] = ACTIONS(1301), - [anon_sym_linksection] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1303), - [anon_sym_STAR] = ACTIONS(1303), - [anon_sym_EQ_GT] = ACTIONS(1301), - [anon_sym_STAR_EQ] = ACTIONS(1301), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1301), - [anon_sym_SLASH_EQ] = ACTIONS(1301), - [anon_sym_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_PLUS_EQ] = ACTIONS(1301), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1301), - [anon_sym_DASH_EQ] = ACTIONS(1301), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1301), - [anon_sym_LT_LT_EQ] = ACTIONS(1301), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1301), - [anon_sym_GT_GT_EQ] = ACTIONS(1301), - [anon_sym_AMP_EQ] = ACTIONS(1301), - [anon_sym_CARET_EQ] = ACTIONS(1301), - [anon_sym_PIPE_EQ] = ACTIONS(1301), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1301), - [anon_sym_EQ_EQ] = ACTIONS(1301), - [anon_sym_BANG_EQ] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(1303), - [anon_sym_GT] = ACTIONS(1303), - [anon_sym_LT_EQ] = ACTIONS(1301), - [anon_sym_GT_EQ] = ACTIONS(1301), - [anon_sym_AMP] = ACTIONS(1303), - [anon_sym_CARET] = ACTIONS(1303), - [anon_sym_orelse] = ACTIONS(1301), - [anon_sym_catch] = ACTIONS(1301), - [anon_sym_LT_LT] = ACTIONS(1303), - [anon_sym_GT_GT] = ACTIONS(1303), - [anon_sym_LT_LT_PIPE] = ACTIONS(1303), - [anon_sym_PLUS] = ACTIONS(1303), - [anon_sym_DASH] = ACTIONS(1303), - [anon_sym_PLUS_PLUS] = ACTIONS(1301), - [anon_sym_PLUS_PERCENT] = ACTIONS(1303), - [anon_sym_DASH_PERCENT] = ACTIONS(1303), - [anon_sym_PLUS_PIPE] = ACTIONS(1303), - [anon_sym_DASH_PIPE] = ACTIONS(1303), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_SLASH] = ACTIONS(1303), - [anon_sym_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_STAR] = ACTIONS(1301), - [anon_sym_STAR_PERCENT] = ACTIONS(1303), - [anon_sym_STAR_PIPE] = ACTIONS(1303), - [anon_sym_align] = ACTIONS(1301), - [anon_sym_DOT_DOT] = ACTIONS(1301), - [anon_sym_DOT_STAR] = ACTIONS(1301), - [anon_sym_DOT_QMARK] = ACTIONS(1301), + [anon_sym_COMMA] = ACTIONS(1315), + [anon_sym_SEMI] = ACTIONS(1315), + [anon_sym_BANG] = ACTIONS(1317), + [anon_sym_COLON] = ACTIONS(1315), + [anon_sym_EQ] = ACTIONS(1317), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_or] = ACTIONS(1317), + [anon_sym_and] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1317), + [anon_sym_LPAREN] = ACTIONS(1315), + [anon_sym_RPAREN] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1315), + [anon_sym_RBRACK] = ACTIONS(1315), + [anon_sym_linksection] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1317), + [anon_sym_STAR] = ACTIONS(1317), + [anon_sym_EQ_GT] = ACTIONS(1315), + [anon_sym_STAR_EQ] = ACTIONS(1315), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1315), + [anon_sym_SLASH_EQ] = ACTIONS(1315), + [anon_sym_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_PLUS_EQ] = ACTIONS(1315), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1315), + [anon_sym_DASH_EQ] = ACTIONS(1315), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1315), + [anon_sym_LT_LT_EQ] = ACTIONS(1315), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1315), + [anon_sym_GT_GT_EQ] = ACTIONS(1315), + [anon_sym_AMP_EQ] = ACTIONS(1315), + [anon_sym_CARET_EQ] = ACTIONS(1315), + [anon_sym_PIPE_EQ] = ACTIONS(1315), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1315), + [anon_sym_EQ_EQ] = ACTIONS(1315), + [anon_sym_BANG_EQ] = ACTIONS(1315), + [anon_sym_LT] = ACTIONS(1317), + [anon_sym_GT] = ACTIONS(1317), + [anon_sym_LT_EQ] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1315), + [anon_sym_AMP] = ACTIONS(1317), + [anon_sym_CARET] = ACTIONS(1317), + [anon_sym_orelse] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1317), + [anon_sym_GT_GT] = ACTIONS(1317), + [anon_sym_LT_LT_PIPE] = ACTIONS(1317), + [anon_sym_PLUS] = ACTIONS(1317), + [anon_sym_DASH] = ACTIONS(1317), + [anon_sym_PLUS_PLUS] = ACTIONS(1315), + [anon_sym_PLUS_PERCENT] = ACTIONS(1317), + [anon_sym_DASH_PERCENT] = ACTIONS(1317), + [anon_sym_PLUS_PIPE] = ACTIONS(1317), + [anon_sym_DASH_PIPE] = ACTIONS(1317), + [anon_sym_PIPE_PIPE] = ACTIONS(1315), + [anon_sym_SLASH] = ACTIONS(1317), + [anon_sym_PERCENT] = ACTIONS(1317), + [anon_sym_STAR_STAR] = ACTIONS(1315), + [anon_sym_STAR_PERCENT] = ACTIONS(1317), + [anon_sym_STAR_PIPE] = ACTIONS(1317), + [anon_sym_align] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1315), + [anon_sym_DOT_STAR] = ACTIONS(1315), + [anon_sym_DOT_QMARK] = ACTIONS(1315), [sym_line_comment] = ACTIONS(95), }, [760] = { @@ -80667,6 +80707,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(95), }, [762] = { + [anon_sym_COMMA] = ACTIONS(522), + [anon_sym_SEMI] = ACTIONS(522), + [anon_sym_BANG] = ACTIONS(524), + [anon_sym_COLON] = ACTIONS(522), + [anon_sym_EQ] = ACTIONS(524), + [anon_sym_else] = ACTIONS(522), + [anon_sym_or] = ACTIONS(524), + [anon_sym_and] = ACTIONS(522), + [anon_sym_LBRACE] = ACTIONS(522), + [anon_sym_RBRACE] = ACTIONS(522), + [anon_sym_DOT] = ACTIONS(524), + [anon_sym_LPAREN] = ACTIONS(522), + [anon_sym_RPAREN] = ACTIONS(522), + [anon_sym_LBRACK] = ACTIONS(522), + [anon_sym_RBRACK] = ACTIONS(522), + [anon_sym_linksection] = ACTIONS(522), + [anon_sym_PIPE] = ACTIONS(524), + [anon_sym_STAR] = ACTIONS(524), + [anon_sym_EQ_GT] = ACTIONS(522), + [anon_sym_STAR_EQ] = ACTIONS(522), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(522), + [anon_sym_SLASH_EQ] = ACTIONS(522), + [anon_sym_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_EQ] = ACTIONS(522), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(522), + [anon_sym_DASH_EQ] = ACTIONS(522), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(522), + [anon_sym_LT_LT_EQ] = ACTIONS(522), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(522), + [anon_sym_GT_GT_EQ] = ACTIONS(522), + [anon_sym_AMP_EQ] = ACTIONS(522), + [anon_sym_CARET_EQ] = ACTIONS(522), + [anon_sym_PIPE_EQ] = ACTIONS(522), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(522), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(522), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(522), + [anon_sym_EQ_EQ] = ACTIONS(522), + [anon_sym_BANG_EQ] = ACTIONS(522), + [anon_sym_LT] = ACTIONS(524), + [anon_sym_GT] = ACTIONS(524), + [anon_sym_LT_EQ] = ACTIONS(522), + [anon_sym_GT_EQ] = ACTIONS(522), + [anon_sym_AMP] = ACTIONS(524), + [anon_sym_CARET] = ACTIONS(524), + [anon_sym_orelse] = ACTIONS(522), + [anon_sym_catch] = ACTIONS(522), + [anon_sym_LT_LT] = ACTIONS(524), + [anon_sym_GT_GT] = ACTIONS(524), + [anon_sym_LT_LT_PIPE] = ACTIONS(524), + [anon_sym_PLUS] = ACTIONS(524), + [anon_sym_DASH] = ACTIONS(524), + [anon_sym_PLUS_PLUS] = ACTIONS(522), + [anon_sym_PLUS_PERCENT] = ACTIONS(524), + [anon_sym_DASH_PERCENT] = ACTIONS(524), + [anon_sym_PLUS_PIPE] = ACTIONS(524), + [anon_sym_DASH_PIPE] = ACTIONS(524), + [anon_sym_PIPE_PIPE] = ACTIONS(522), + [anon_sym_SLASH] = ACTIONS(524), + [anon_sym_PERCENT] = ACTIONS(524), + [anon_sym_STAR_STAR] = ACTIONS(522), + [anon_sym_STAR_PERCENT] = ACTIONS(524), + [anon_sym_STAR_PIPE] = ACTIONS(524), + [anon_sym_align] = ACTIONS(522), + [anon_sym_DOT_DOT] = ACTIONS(522), + [anon_sym_DOT_STAR] = ACTIONS(522), + [anon_sym_DOT_QMARK] = ACTIONS(522), + [sym_line_comment] = ACTIONS(95), + }, + [763] = { [anon_sym_COMMA] = ACTIONS(1327), [anon_sym_SEMI] = ACTIONS(1327), [anon_sym_BANG] = ACTIONS(1329), @@ -80735,7 +80844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1327), [sym_line_comment] = ACTIONS(95), }, - [763] = { + [764] = { [anon_sym_COMMA] = ACTIONS(1331), [anon_sym_SEMI] = ACTIONS(1331), [anon_sym_BANG] = ACTIONS(1333), @@ -80804,7 +80913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1331), [sym_line_comment] = ACTIONS(95), }, - [764] = { + [765] = { [anon_sym_COMMA] = ACTIONS(1335), [anon_sym_SEMI] = ACTIONS(1335), [anon_sym_BANG] = ACTIONS(1337), @@ -80873,7 +80982,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1335), [sym_line_comment] = ACTIONS(95), }, - [765] = { + [766] = { [anon_sym_COMMA] = ACTIONS(1339), [anon_sym_SEMI] = ACTIONS(1339), [anon_sym_BANG] = ACTIONS(1341), @@ -80942,7 +81051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1339), [sym_line_comment] = ACTIONS(95), }, - [766] = { + [767] = { [anon_sym_COMMA] = ACTIONS(1343), [anon_sym_SEMI] = ACTIONS(1343), [anon_sym_BANG] = ACTIONS(1345), @@ -81011,75 +81120,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1343), [sym_line_comment] = ACTIONS(95), }, - [767] = { - [anon_sym_COMMA] = ACTIONS(512), - [anon_sym_SEMI] = ACTIONS(512), - [anon_sym_BANG] = ACTIONS(510), - [anon_sym_COLON] = ACTIONS(512), - [anon_sym_EQ] = ACTIONS(510), - [anon_sym_else] = ACTIONS(512), - [anon_sym_or] = ACTIONS(510), - [anon_sym_and] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_RBRACE] = ACTIONS(512), - [anon_sym_DOT] = ACTIONS(510), - [anon_sym_LPAREN] = ACTIONS(512), - [anon_sym_RPAREN] = ACTIONS(512), - [anon_sym_LBRACK] = ACTIONS(512), - [anon_sym_RBRACK] = ACTIONS(512), - [anon_sym_linksection] = ACTIONS(512), - [anon_sym_PIPE] = ACTIONS(510), - [anon_sym_STAR] = ACTIONS(510), - [anon_sym_EQ_GT] = ACTIONS(512), - [anon_sym_STAR_EQ] = ACTIONS(512), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(512), - [anon_sym_SLASH_EQ] = ACTIONS(512), - [anon_sym_PERCENT_EQ] = ACTIONS(512), - [anon_sym_PLUS_EQ] = ACTIONS(512), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(512), - [anon_sym_DASH_EQ] = ACTIONS(512), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(512), - [anon_sym_LT_LT_EQ] = ACTIONS(512), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(512), - [anon_sym_GT_GT_EQ] = ACTIONS(512), - [anon_sym_AMP_EQ] = ACTIONS(512), - [anon_sym_CARET_EQ] = ACTIONS(512), - [anon_sym_PIPE_EQ] = ACTIONS(512), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(512), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(512), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(512), - [anon_sym_EQ_EQ] = ACTIONS(512), - [anon_sym_BANG_EQ] = ACTIONS(512), - [anon_sym_LT] = ACTIONS(510), - [anon_sym_GT] = ACTIONS(510), - [anon_sym_LT_EQ] = ACTIONS(512), - [anon_sym_GT_EQ] = ACTIONS(512), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_CARET] = ACTIONS(510), - [anon_sym_orelse] = ACTIONS(512), - [anon_sym_catch] = ACTIONS(512), - [anon_sym_LT_LT] = ACTIONS(510), - [anon_sym_GT_GT] = ACTIONS(510), - [anon_sym_LT_LT_PIPE] = ACTIONS(510), - [anon_sym_PLUS] = ACTIONS(510), - [anon_sym_DASH] = ACTIONS(510), - [anon_sym_PLUS_PLUS] = ACTIONS(512), - [anon_sym_PLUS_PERCENT] = ACTIONS(510), - [anon_sym_DASH_PERCENT] = ACTIONS(510), - [anon_sym_PLUS_PIPE] = ACTIONS(510), - [anon_sym_DASH_PIPE] = ACTIONS(510), - [anon_sym_PIPE_PIPE] = ACTIONS(512), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_PERCENT] = ACTIONS(510), - [anon_sym_STAR_STAR] = ACTIONS(512), - [anon_sym_STAR_PERCENT] = ACTIONS(510), - [anon_sym_STAR_PIPE] = ACTIONS(510), - [anon_sym_align] = ACTIONS(512), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_STAR] = ACTIONS(512), - [anon_sym_DOT_QMARK] = ACTIONS(512), - [sym_line_comment] = ACTIONS(95), - }, [768] = { [anon_sym_COMMA] = ACTIONS(1347), [anon_sym_SEMI] = ACTIONS(1347), @@ -81150,75 +81190,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_line_comment] = ACTIONS(95), }, [769] = { - [anon_sym_COMMA] = ACTIONS(508), - [anon_sym_SEMI] = ACTIONS(508), - [anon_sym_BANG] = ACTIONS(506), - [anon_sym_COLON] = ACTIONS(508), - [anon_sym_EQ] = ACTIONS(506), - [anon_sym_else] = ACTIONS(508), - [anon_sym_or] = ACTIONS(506), - [anon_sym_and] = ACTIONS(508), - [anon_sym_LBRACE] = ACTIONS(508), - [anon_sym_RBRACE] = ACTIONS(508), - [anon_sym_DOT] = ACTIONS(506), - [anon_sym_LPAREN] = ACTIONS(508), - [anon_sym_RPAREN] = ACTIONS(508), - [anon_sym_LBRACK] = ACTIONS(508), - [anon_sym_RBRACK] = ACTIONS(508), - [anon_sym_linksection] = ACTIONS(508), - [anon_sym_PIPE] = ACTIONS(506), - [anon_sym_STAR] = ACTIONS(506), - [anon_sym_EQ_GT] = ACTIONS(508), - [anon_sym_STAR_EQ] = ACTIONS(508), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(508), - [anon_sym_SLASH_EQ] = ACTIONS(508), - [anon_sym_PERCENT_EQ] = ACTIONS(508), - [anon_sym_PLUS_EQ] = ACTIONS(508), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(508), - [anon_sym_DASH_EQ] = ACTIONS(508), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(508), - [anon_sym_LT_LT_EQ] = ACTIONS(508), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(508), - [anon_sym_GT_GT_EQ] = ACTIONS(508), - [anon_sym_AMP_EQ] = ACTIONS(508), - [anon_sym_CARET_EQ] = ACTIONS(508), - [anon_sym_PIPE_EQ] = ACTIONS(508), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(508), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(508), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(508), - [anon_sym_EQ_EQ] = ACTIONS(508), - [anon_sym_BANG_EQ] = ACTIONS(508), - [anon_sym_LT] = ACTIONS(506), - [anon_sym_GT] = ACTIONS(506), - [anon_sym_LT_EQ] = ACTIONS(508), - [anon_sym_GT_EQ] = ACTIONS(508), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_CARET] = ACTIONS(506), - [anon_sym_orelse] = ACTIONS(508), - [anon_sym_catch] = ACTIONS(508), - [anon_sym_LT_LT] = ACTIONS(506), - [anon_sym_GT_GT] = ACTIONS(506), - [anon_sym_LT_LT_PIPE] = ACTIONS(506), - [anon_sym_PLUS] = ACTIONS(506), - [anon_sym_DASH] = ACTIONS(506), - [anon_sym_PLUS_PLUS] = ACTIONS(508), - [anon_sym_PLUS_PERCENT] = ACTIONS(506), - [anon_sym_DASH_PERCENT] = ACTIONS(506), - [anon_sym_PLUS_PIPE] = ACTIONS(506), - [anon_sym_DASH_PIPE] = ACTIONS(506), - [anon_sym_PIPE_PIPE] = ACTIONS(508), - [anon_sym_SLASH] = ACTIONS(506), - [anon_sym_PERCENT] = ACTIONS(506), - [anon_sym_STAR_STAR] = ACTIONS(508), - [anon_sym_STAR_PERCENT] = ACTIONS(506), - [anon_sym_STAR_PIPE] = ACTIONS(506), - [anon_sym_align] = ACTIONS(508), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_STAR] = ACTIONS(508), - [anon_sym_DOT_QMARK] = ACTIONS(508), - [sym_line_comment] = ACTIONS(95), - }, - [770] = { [anon_sym_COMMA] = ACTIONS(1351), [anon_sym_SEMI] = ACTIONS(1351), [anon_sym_BANG] = ACTIONS(1353), @@ -81287,76 +81258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1351), [sym_line_comment] = ACTIONS(95), }, - [771] = { - [anon_sym_COMMA] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(570), - [anon_sym_BANG] = ACTIONS(572), - [anon_sym_COLON] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(572), - [anon_sym_else] = ACTIONS(570), - [anon_sym_or] = ACTIONS(572), - [anon_sym_and] = ACTIONS(570), - [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(570), - [anon_sym_DOT] = ACTIONS(572), - [anon_sym_LPAREN] = ACTIONS(570), - [anon_sym_RPAREN] = ACTIONS(570), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(570), - [anon_sym_linksection] = ACTIONS(570), - [anon_sym_PIPE] = ACTIONS(572), - [anon_sym_STAR] = ACTIONS(572), - [anon_sym_EQ_GT] = ACTIONS(570), - [anon_sym_STAR_EQ] = ACTIONS(570), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(570), - [anon_sym_SLASH_EQ] = ACTIONS(570), - [anon_sym_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_EQ] = ACTIONS(570), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(570), - [anon_sym_DASH_EQ] = ACTIONS(570), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(570), - [anon_sym_LT_LT_EQ] = ACTIONS(570), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(570), - [anon_sym_GT_GT_EQ] = ACTIONS(570), - [anon_sym_AMP_EQ] = ACTIONS(570), - [anon_sym_CARET_EQ] = ACTIONS(570), - [anon_sym_PIPE_EQ] = ACTIONS(570), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(570), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(570), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(570), - [anon_sym_EQ_EQ] = ACTIONS(570), - [anon_sym_BANG_EQ] = ACTIONS(570), - [anon_sym_LT] = ACTIONS(572), - [anon_sym_GT] = ACTIONS(572), - [anon_sym_LT_EQ] = ACTIONS(570), - [anon_sym_GT_EQ] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(572), - [anon_sym_CARET] = ACTIONS(572), - [anon_sym_orelse] = ACTIONS(570), - [anon_sym_catch] = ACTIONS(570), - [anon_sym_LT_LT] = ACTIONS(572), - [anon_sym_GT_GT] = ACTIONS(572), - [anon_sym_LT_LT_PIPE] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(572), - [anon_sym_DASH] = ACTIONS(572), - [anon_sym_PLUS_PLUS] = ACTIONS(570), - [anon_sym_PLUS_PERCENT] = ACTIONS(572), - [anon_sym_DASH_PERCENT] = ACTIONS(572), - [anon_sym_PLUS_PIPE] = ACTIONS(572), - [anon_sym_DASH_PIPE] = ACTIONS(572), - [anon_sym_PIPE_PIPE] = ACTIONS(570), - [anon_sym_SLASH] = ACTIONS(572), - [anon_sym_PERCENT] = ACTIONS(572), - [anon_sym_STAR_STAR] = ACTIONS(570), - [anon_sym_STAR_PERCENT] = ACTIONS(572), - [anon_sym_STAR_PIPE] = ACTIONS(572), - [anon_sym_align] = ACTIONS(570), - [anon_sym_DOT_DOT] = ACTIONS(570), - [anon_sym_DOT_STAR] = ACTIONS(570), - [anon_sym_DOT_QMARK] = ACTIONS(570), - [sym_line_comment] = ACTIONS(95), - }, - [772] = { + [770] = { [anon_sym_COMMA] = ACTIONS(1355), [anon_sym_SEMI] = ACTIONS(1355), [anon_sym_BANG] = ACTIONS(1357), @@ -81425,7 +81327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1355), [sym_line_comment] = ACTIONS(95), }, - [773] = { + [771] = { [anon_sym_COMMA] = ACTIONS(1359), [anon_sym_SEMI] = ACTIONS(1359), [anon_sym_BANG] = ACTIONS(1361), @@ -81494,145 +81396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1359), [sym_line_comment] = ACTIONS(95), }, - [774] = { - [anon_sym_COMMA] = ACTIONS(1262), - [anon_sym_SEMI] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_else] = ACTIONS(1262), - [anon_sym_or] = ACTIONS(1264), - [anon_sym_and] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1262), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1262), - [anon_sym_RPAREN] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1262), - [anon_sym_linksection] = ACTIONS(1262), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_STAR] = ACTIONS(1264), - [anon_sym_EQ_GT] = ACTIONS(1262), - [anon_sym_STAR_EQ] = ACTIONS(1262), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1262), - [anon_sym_SLASH_EQ] = ACTIONS(1262), - [anon_sym_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1262), - [anon_sym_DASH_EQ] = ACTIONS(1262), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_EQ] = ACTIONS(1262), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1262), - [anon_sym_GT_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP_EQ] = ACTIONS(1262), - [anon_sym_CARET_EQ] = ACTIONS(1262), - [anon_sym_PIPE_EQ] = ACTIONS(1262), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1262), - [anon_sym_EQ_EQ] = ACTIONS(1262), - [anon_sym_BANG_EQ] = ACTIONS(1262), - [anon_sym_LT] = ACTIONS(1264), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_LT_EQ] = ACTIONS(1262), - [anon_sym_GT_EQ] = ACTIONS(1262), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1264), - [anon_sym_orelse] = ACTIONS(1262), - [anon_sym_catch] = ACTIONS(1262), - [anon_sym_LT_LT] = ACTIONS(1264), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_LT_LT_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1264), - [anon_sym_PLUS_PLUS] = ACTIONS(1262), - [anon_sym_PLUS_PERCENT] = ACTIONS(1264), - [anon_sym_DASH_PERCENT] = ACTIONS(1264), - [anon_sym_PLUS_PIPE] = ACTIONS(1264), - [anon_sym_DASH_PIPE] = ACTIONS(1264), - [anon_sym_PIPE_PIPE] = ACTIONS(1262), - [anon_sym_SLASH] = ACTIONS(1264), - [anon_sym_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_STAR] = ACTIONS(1262), - [anon_sym_STAR_PERCENT] = ACTIONS(1264), - [anon_sym_STAR_PIPE] = ACTIONS(1264), - [anon_sym_align] = ACTIONS(1262), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_DOT_STAR] = ACTIONS(1262), - [anon_sym_DOT_QMARK] = ACTIONS(1262), - [sym_line_comment] = ACTIONS(95), - }, - [775] = { - [anon_sym_COMMA] = ACTIONS(516), - [anon_sym_SEMI] = ACTIONS(516), - [anon_sym_BANG] = ACTIONS(518), - [anon_sym_COLON] = ACTIONS(516), - [anon_sym_EQ] = ACTIONS(518), - [anon_sym_else] = ACTIONS(516), - [anon_sym_or] = ACTIONS(518), - [anon_sym_and] = ACTIONS(516), - [anon_sym_LBRACE] = ACTIONS(516), - [anon_sym_RBRACE] = ACTIONS(516), - [anon_sym_DOT] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(516), - [anon_sym_RPAREN] = ACTIONS(516), - [anon_sym_LBRACK] = ACTIONS(516), - [anon_sym_RBRACK] = ACTIONS(516), - [anon_sym_linksection] = ACTIONS(516), - [anon_sym_PIPE] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(516), - [anon_sym_STAR_EQ] = ACTIONS(516), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(516), - [anon_sym_SLASH_EQ] = ACTIONS(516), - [anon_sym_PERCENT_EQ] = ACTIONS(516), - [anon_sym_PLUS_EQ] = ACTIONS(516), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(516), - [anon_sym_DASH_EQ] = ACTIONS(516), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(516), - [anon_sym_LT_LT_EQ] = ACTIONS(516), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(516), - [anon_sym_GT_GT_EQ] = ACTIONS(516), - [anon_sym_AMP_EQ] = ACTIONS(516), - [anon_sym_CARET_EQ] = ACTIONS(516), - [anon_sym_PIPE_EQ] = ACTIONS(516), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(516), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(516), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(516), - [anon_sym_EQ_EQ] = ACTIONS(516), - [anon_sym_BANG_EQ] = ACTIONS(516), - [anon_sym_LT] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(518), - [anon_sym_LT_EQ] = ACTIONS(516), - [anon_sym_GT_EQ] = ACTIONS(516), - [anon_sym_AMP] = ACTIONS(518), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_orelse] = ACTIONS(516), - [anon_sym_catch] = ACTIONS(516), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(518), - [anon_sym_LT_LT_PIPE] = ACTIONS(518), - [anon_sym_PLUS] = ACTIONS(518), - [anon_sym_DASH] = ACTIONS(518), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_PLUS_PERCENT] = ACTIONS(518), - [anon_sym_DASH_PERCENT] = ACTIONS(518), - [anon_sym_PLUS_PIPE] = ACTIONS(518), - [anon_sym_DASH_PIPE] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(516), - [anon_sym_SLASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR_STAR] = ACTIONS(516), - [anon_sym_STAR_PERCENT] = ACTIONS(518), - [anon_sym_STAR_PIPE] = ACTIONS(518), - [anon_sym_align] = ACTIONS(516), - [anon_sym_DOT_DOT] = ACTIONS(516), - [anon_sym_DOT_STAR] = ACTIONS(516), - [anon_sym_DOT_QMARK] = ACTIONS(516), - [sym_line_comment] = ACTIONS(95), - }, - [776] = { + [772] = { [anon_sym_COMMA] = ACTIONS(1363), [anon_sym_SEMI] = ACTIONS(1363), [anon_sym_BANG] = ACTIONS(1365), @@ -81701,7 +81465,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1363), [sym_line_comment] = ACTIONS(95), }, - [777] = { + [773] = { [anon_sym_COMMA] = ACTIONS(1367), [anon_sym_SEMI] = ACTIONS(1367), [anon_sym_BANG] = ACTIONS(1369), @@ -81770,7 +81534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1367), [sym_line_comment] = ACTIONS(95), }, - [778] = { + [774] = { [anon_sym_COMMA] = ACTIONS(1371), [anon_sym_SEMI] = ACTIONS(1371), [anon_sym_BANG] = ACTIONS(1373), @@ -81839,7 +81603,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1371), [sym_line_comment] = ACTIONS(95), }, - [779] = { + [775] = { [anon_sym_COMMA] = ACTIONS(1375), [anon_sym_SEMI] = ACTIONS(1375), [anon_sym_BANG] = ACTIONS(1377), @@ -81908,7 +81672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1375), [sym_line_comment] = ACTIONS(95), }, - [780] = { + [776] = { [anon_sym_COMMA] = ACTIONS(1379), [anon_sym_SEMI] = ACTIONS(1379), [anon_sym_BANG] = ACTIONS(1381), @@ -81977,24 +81741,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1379), [sym_line_comment] = ACTIONS(95), }, - [781] = { - [sym_InitList] = STATE(983), - [sym__ElseTypeExprTail] = STATE(803), + [777] = { [anon_sym_COMMA] = ACTIONS(1383), [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1385), [anon_sym_COLON] = ACTIONS(1383), [anon_sym_EQ] = ACTIONS(1385), [anon_sym_else] = ACTIONS(1383), [anon_sym_or] = ACTIONS(1385), [anon_sym_and] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1383), [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1303), - [anon_sym_LPAREN] = ACTIONS(1301), + [anon_sym_DOT] = ACTIONS(1385), + [anon_sym_LPAREN] = ACTIONS(1383), [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1383), [anon_sym_RBRACK] = ACTIONS(1383), + [anon_sym_linksection] = ACTIONS(1383), [anon_sym_PIPE] = ACTIONS(1385), [anon_sym_STAR] = ACTIONS(1385), [anon_sym_EQ_GT] = ACTIONS(1383), @@ -82041,1944 +81804,2290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1383), [anon_sym_STAR_PERCENT] = ACTIONS(1385), [anon_sym_STAR_PIPE] = ACTIONS(1385), + [anon_sym_align] = ACTIONS(1383), [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_STAR] = ACTIONS(1301), - [anon_sym_DOT_QMARK] = ACTIONS(1301), + [anon_sym_DOT_STAR] = ACTIONS(1383), + [anon_sym_DOT_QMARK] = ACTIONS(1383), + [sym_line_comment] = ACTIONS(95), + }, + [778] = { + [anon_sym_COMMA] = ACTIONS(1387), + [anon_sym_SEMI] = ACTIONS(1387), + [anon_sym_BANG] = ACTIONS(1389), + [anon_sym_COLON] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_else] = ACTIONS(1387), + [anon_sym_or] = ACTIONS(1389), + [anon_sym_and] = ACTIONS(1387), + [anon_sym_LBRACE] = ACTIONS(1387), + [anon_sym_RBRACE] = ACTIONS(1387), + [anon_sym_DOT] = ACTIONS(1389), + [anon_sym_LPAREN] = ACTIONS(1387), + [anon_sym_RPAREN] = ACTIONS(1387), + [anon_sym_LBRACK] = ACTIONS(1387), + [anon_sym_RBRACK] = ACTIONS(1387), + [anon_sym_linksection] = ACTIONS(1387), + [anon_sym_PIPE] = ACTIONS(1389), + [anon_sym_STAR] = ACTIONS(1389), + [anon_sym_EQ_GT] = ACTIONS(1387), + [anon_sym_STAR_EQ] = ACTIONS(1387), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1387), + [anon_sym_SLASH_EQ] = ACTIONS(1387), + [anon_sym_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_PLUS_EQ] = ACTIONS(1387), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1387), + [anon_sym_DASH_EQ] = ACTIONS(1387), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1387), + [anon_sym_LT_LT_EQ] = ACTIONS(1387), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1387), + [anon_sym_GT_GT_EQ] = ACTIONS(1387), + [anon_sym_AMP_EQ] = ACTIONS(1387), + [anon_sym_CARET_EQ] = ACTIONS(1387), + [anon_sym_PIPE_EQ] = ACTIONS(1387), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1387), + [anon_sym_EQ_EQ] = ACTIONS(1387), + [anon_sym_BANG_EQ] = ACTIONS(1387), + [anon_sym_LT] = ACTIONS(1389), + [anon_sym_GT] = ACTIONS(1389), + [anon_sym_LT_EQ] = ACTIONS(1387), + [anon_sym_GT_EQ] = ACTIONS(1387), + [anon_sym_AMP] = ACTIONS(1389), + [anon_sym_CARET] = ACTIONS(1389), + [anon_sym_orelse] = ACTIONS(1387), + [anon_sym_catch] = ACTIONS(1387), + [anon_sym_LT_LT] = ACTIONS(1389), + [anon_sym_GT_GT] = ACTIONS(1389), + [anon_sym_LT_LT_PIPE] = ACTIONS(1389), + [anon_sym_PLUS] = ACTIONS(1389), + [anon_sym_DASH] = ACTIONS(1389), + [anon_sym_PLUS_PLUS] = ACTIONS(1387), + [anon_sym_PLUS_PERCENT] = ACTIONS(1389), + [anon_sym_DASH_PERCENT] = ACTIONS(1389), + [anon_sym_PLUS_PIPE] = ACTIONS(1389), + [anon_sym_DASH_PIPE] = ACTIONS(1389), + [anon_sym_PIPE_PIPE] = ACTIONS(1387), + [anon_sym_SLASH] = ACTIONS(1389), + [anon_sym_PERCENT] = ACTIONS(1389), + [anon_sym_STAR_STAR] = ACTIONS(1387), + [anon_sym_STAR_PERCENT] = ACTIONS(1389), + [anon_sym_STAR_PIPE] = ACTIONS(1389), + [anon_sym_align] = ACTIONS(1387), + [anon_sym_DOT_DOT] = ACTIONS(1387), + [anon_sym_DOT_STAR] = ACTIONS(1387), + [anon_sym_DOT_QMARK] = ACTIONS(1387), + [sym_line_comment] = ACTIONS(95), + }, + [779] = { + [anon_sym_COMMA] = ACTIONS(1391), + [anon_sym_SEMI] = ACTIONS(1391), + [anon_sym_BANG] = ACTIONS(1393), + [anon_sym_COLON] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_else] = ACTIONS(1391), + [anon_sym_or] = ACTIONS(1393), + [anon_sym_and] = ACTIONS(1391), + [anon_sym_LBRACE] = ACTIONS(1391), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_DOT] = ACTIONS(1393), + [anon_sym_LPAREN] = ACTIONS(1391), + [anon_sym_RPAREN] = ACTIONS(1391), + [anon_sym_LBRACK] = ACTIONS(1391), + [anon_sym_RBRACK] = ACTIONS(1391), + [anon_sym_linksection] = ACTIONS(1391), + [anon_sym_PIPE] = ACTIONS(1393), + [anon_sym_STAR] = ACTIONS(1393), + [anon_sym_EQ_GT] = ACTIONS(1391), + [anon_sym_STAR_EQ] = ACTIONS(1391), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1391), + [anon_sym_SLASH_EQ] = ACTIONS(1391), + [anon_sym_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_PLUS_EQ] = ACTIONS(1391), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1391), + [anon_sym_DASH_EQ] = ACTIONS(1391), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1391), + [anon_sym_LT_LT_EQ] = ACTIONS(1391), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1391), + [anon_sym_GT_GT_EQ] = ACTIONS(1391), + [anon_sym_AMP_EQ] = ACTIONS(1391), + [anon_sym_CARET_EQ] = ACTIONS(1391), + [anon_sym_PIPE_EQ] = ACTIONS(1391), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1391), + [anon_sym_EQ_EQ] = ACTIONS(1391), + [anon_sym_BANG_EQ] = ACTIONS(1391), + [anon_sym_LT] = ACTIONS(1393), + [anon_sym_GT] = ACTIONS(1393), + [anon_sym_LT_EQ] = ACTIONS(1391), + [anon_sym_GT_EQ] = ACTIONS(1391), + [anon_sym_AMP] = ACTIONS(1393), + [anon_sym_CARET] = ACTIONS(1393), + [anon_sym_orelse] = ACTIONS(1391), + [anon_sym_catch] = ACTIONS(1391), + [anon_sym_LT_LT] = ACTIONS(1393), + [anon_sym_GT_GT] = ACTIONS(1393), + [anon_sym_LT_LT_PIPE] = ACTIONS(1393), + [anon_sym_PLUS] = ACTIONS(1393), + [anon_sym_DASH] = ACTIONS(1393), + [anon_sym_PLUS_PLUS] = ACTIONS(1391), + [anon_sym_PLUS_PERCENT] = ACTIONS(1393), + [anon_sym_DASH_PERCENT] = ACTIONS(1393), + [anon_sym_PLUS_PIPE] = ACTIONS(1393), + [anon_sym_DASH_PIPE] = ACTIONS(1393), + [anon_sym_PIPE_PIPE] = ACTIONS(1391), + [anon_sym_SLASH] = ACTIONS(1393), + [anon_sym_PERCENT] = ACTIONS(1393), + [anon_sym_STAR_STAR] = ACTIONS(1391), + [anon_sym_STAR_PERCENT] = ACTIONS(1393), + [anon_sym_STAR_PIPE] = ACTIONS(1393), + [anon_sym_align] = ACTIONS(1391), + [anon_sym_DOT_DOT] = ACTIONS(1391), + [anon_sym_DOT_STAR] = ACTIONS(1391), + [anon_sym_DOT_QMARK] = ACTIONS(1391), + [sym_line_comment] = ACTIONS(95), + }, + [780] = { + [anon_sym_COMMA] = ACTIONS(1395), + [anon_sym_SEMI] = ACTIONS(1395), + [anon_sym_BANG] = ACTIONS(1397), + [anon_sym_COLON] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1395), + [anon_sym_or] = ACTIONS(1397), + [anon_sym_and] = ACTIONS(1395), + [anon_sym_LBRACE] = ACTIONS(1395), + [anon_sym_RBRACE] = ACTIONS(1395), + [anon_sym_DOT] = ACTIONS(1397), + [anon_sym_LPAREN] = ACTIONS(1395), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_LBRACK] = ACTIONS(1395), + [anon_sym_RBRACK] = ACTIONS(1395), + [anon_sym_linksection] = ACTIONS(1395), + [anon_sym_PIPE] = ACTIONS(1397), + [anon_sym_STAR] = ACTIONS(1397), + [anon_sym_EQ_GT] = ACTIONS(1395), + [anon_sym_STAR_EQ] = ACTIONS(1395), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1395), + [anon_sym_SLASH_EQ] = ACTIONS(1395), + [anon_sym_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_PLUS_EQ] = ACTIONS(1395), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1395), + [anon_sym_DASH_EQ] = ACTIONS(1395), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1395), + [anon_sym_LT_LT_EQ] = ACTIONS(1395), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1395), + [anon_sym_GT_GT_EQ] = ACTIONS(1395), + [anon_sym_AMP_EQ] = ACTIONS(1395), + [anon_sym_CARET_EQ] = ACTIONS(1395), + [anon_sym_PIPE_EQ] = ACTIONS(1395), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1395), + [anon_sym_EQ_EQ] = ACTIONS(1395), + [anon_sym_BANG_EQ] = ACTIONS(1395), + [anon_sym_LT] = ACTIONS(1397), + [anon_sym_GT] = ACTIONS(1397), + [anon_sym_LT_EQ] = ACTIONS(1395), + [anon_sym_GT_EQ] = ACTIONS(1395), + [anon_sym_AMP] = ACTIONS(1397), + [anon_sym_CARET] = ACTIONS(1397), + [anon_sym_orelse] = ACTIONS(1395), + [anon_sym_catch] = ACTIONS(1395), + [anon_sym_LT_LT] = ACTIONS(1397), + [anon_sym_GT_GT] = ACTIONS(1397), + [anon_sym_LT_LT_PIPE] = ACTIONS(1397), + [anon_sym_PLUS] = ACTIONS(1397), + [anon_sym_DASH] = ACTIONS(1397), + [anon_sym_PLUS_PLUS] = ACTIONS(1395), + [anon_sym_PLUS_PERCENT] = ACTIONS(1397), + [anon_sym_DASH_PERCENT] = ACTIONS(1397), + [anon_sym_PLUS_PIPE] = ACTIONS(1397), + [anon_sym_DASH_PIPE] = ACTIONS(1397), + [anon_sym_PIPE_PIPE] = ACTIONS(1395), + [anon_sym_SLASH] = ACTIONS(1397), + [anon_sym_PERCENT] = ACTIONS(1397), + [anon_sym_STAR_STAR] = ACTIONS(1395), + [anon_sym_STAR_PERCENT] = ACTIONS(1397), + [anon_sym_STAR_PIPE] = ACTIONS(1397), + [anon_sym_align] = ACTIONS(1395), + [anon_sym_DOT_DOT] = ACTIONS(1395), + [anon_sym_DOT_STAR] = ACTIONS(1395), + [anon_sym_DOT_QMARK] = ACTIONS(1395), + [sym_line_comment] = ACTIONS(95), + }, + [781] = { + [anon_sym_COMMA] = ACTIONS(512), + [anon_sym_SEMI] = ACTIONS(512), + [anon_sym_BANG] = ACTIONS(510), + [anon_sym_COLON] = ACTIONS(512), + [anon_sym_EQ] = ACTIONS(510), + [anon_sym_else] = ACTIONS(512), + [anon_sym_or] = ACTIONS(510), + [anon_sym_and] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(512), + [anon_sym_RBRACE] = ACTIONS(512), + [anon_sym_DOT] = ACTIONS(510), + [anon_sym_LPAREN] = ACTIONS(512), + [anon_sym_RPAREN] = ACTIONS(512), + [anon_sym_LBRACK] = ACTIONS(512), + [anon_sym_RBRACK] = ACTIONS(512), + [anon_sym_linksection] = ACTIONS(512), + [anon_sym_PIPE] = ACTIONS(510), + [anon_sym_STAR] = ACTIONS(510), + [anon_sym_EQ_GT] = ACTIONS(512), + [anon_sym_STAR_EQ] = ACTIONS(512), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(512), + [anon_sym_SLASH_EQ] = ACTIONS(512), + [anon_sym_PERCENT_EQ] = ACTIONS(512), + [anon_sym_PLUS_EQ] = ACTIONS(512), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(512), + [anon_sym_DASH_EQ] = ACTIONS(512), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(512), + [anon_sym_LT_LT_EQ] = ACTIONS(512), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(512), + [anon_sym_GT_GT_EQ] = ACTIONS(512), + [anon_sym_AMP_EQ] = ACTIONS(512), + [anon_sym_CARET_EQ] = ACTIONS(512), + [anon_sym_PIPE_EQ] = ACTIONS(512), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(512), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(512), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(512), + [anon_sym_EQ_EQ] = ACTIONS(512), + [anon_sym_BANG_EQ] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(510), + [anon_sym_GT] = ACTIONS(510), + [anon_sym_LT_EQ] = ACTIONS(512), + [anon_sym_GT_EQ] = ACTIONS(512), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_CARET] = ACTIONS(510), + [anon_sym_orelse] = ACTIONS(512), + [anon_sym_catch] = ACTIONS(512), + [anon_sym_LT_LT] = ACTIONS(510), + [anon_sym_GT_GT] = ACTIONS(510), + [anon_sym_LT_LT_PIPE] = ACTIONS(510), + [anon_sym_PLUS] = ACTIONS(510), + [anon_sym_DASH] = ACTIONS(510), + [anon_sym_PLUS_PLUS] = ACTIONS(512), + [anon_sym_PLUS_PERCENT] = ACTIONS(510), + [anon_sym_DASH_PERCENT] = ACTIONS(510), + [anon_sym_PLUS_PIPE] = ACTIONS(510), + [anon_sym_DASH_PIPE] = ACTIONS(510), + [anon_sym_PIPE_PIPE] = ACTIONS(512), + [anon_sym_SLASH] = ACTIONS(510), + [anon_sym_PERCENT] = ACTIONS(510), + [anon_sym_STAR_STAR] = ACTIONS(512), + [anon_sym_STAR_PERCENT] = ACTIONS(510), + [anon_sym_STAR_PIPE] = ACTIONS(510), + [anon_sym_align] = ACTIONS(512), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT_STAR] = ACTIONS(512), + [anon_sym_DOT_QMARK] = ACTIONS(512), [sym_line_comment] = ACTIONS(95), }, [782] = { - [anon_sym_COMMA] = ACTIONS(1389), - [anon_sym_SEMI] = ACTIONS(1389), - [anon_sym_BANG] = ACTIONS(1391), - [anon_sym_COLON] = ACTIONS(1389), - [anon_sym_EQ] = ACTIONS(1391), - [anon_sym_else] = ACTIONS(1389), - [anon_sym_or] = ACTIONS(1391), - [anon_sym_and] = ACTIONS(1389), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_RBRACK] = ACTIONS(1389), - [anon_sym_linksection] = ACTIONS(1389), - [anon_sym_PIPE] = ACTIONS(1391), - [anon_sym_STAR] = ACTIONS(1391), - [anon_sym_EQ_GT] = ACTIONS(1389), - [anon_sym_STAR_EQ] = ACTIONS(1389), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1389), - [anon_sym_SLASH_EQ] = ACTIONS(1389), - [anon_sym_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_EQ] = ACTIONS(1389), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1389), - [anon_sym_DASH_EQ] = ACTIONS(1389), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_EQ] = ACTIONS(1389), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1389), - [anon_sym_GT_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP_EQ] = ACTIONS(1389), - [anon_sym_CARET_EQ] = ACTIONS(1389), - [anon_sym_PIPE_EQ] = ACTIONS(1389), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1389), - [anon_sym_EQ_EQ] = ACTIONS(1389), - [anon_sym_BANG_EQ] = ACTIONS(1389), - [anon_sym_LT] = ACTIONS(1391), - [anon_sym_GT] = ACTIONS(1391), - [anon_sym_LT_EQ] = ACTIONS(1389), - [anon_sym_GT_EQ] = ACTIONS(1389), - [anon_sym_AMP] = ACTIONS(1391), - [anon_sym_CARET] = ACTIONS(1391), - [anon_sym_orelse] = ACTIONS(1389), - [anon_sym_catch] = ACTIONS(1389), - [anon_sym_LT_LT] = ACTIONS(1391), - [anon_sym_GT_GT] = ACTIONS(1391), - [anon_sym_LT_LT_PIPE] = ACTIONS(1391), - [anon_sym_PLUS] = ACTIONS(1391), - [anon_sym_DASH] = ACTIONS(1391), - [anon_sym_PLUS_PLUS] = ACTIONS(1389), - [anon_sym_PLUS_PERCENT] = ACTIONS(1391), - [anon_sym_DASH_PERCENT] = ACTIONS(1391), - [anon_sym_PLUS_PIPE] = ACTIONS(1391), - [anon_sym_DASH_PIPE] = ACTIONS(1391), - [anon_sym_PIPE_PIPE] = ACTIONS(1389), - [anon_sym_SLASH] = ACTIONS(1391), - [anon_sym_PERCENT] = ACTIONS(1391), - [anon_sym_STAR_STAR] = ACTIONS(1389), - [anon_sym_STAR_PERCENT] = ACTIONS(1391), - [anon_sym_STAR_PIPE] = ACTIONS(1391), - [anon_sym_align] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1389), - [anon_sym_DOT_STAR] = ACTIONS(1389), - [anon_sym_DOT_QMARK] = ACTIONS(1389), + [anon_sym_COMMA] = ACTIONS(1399), + [anon_sym_SEMI] = ACTIONS(1399), + [anon_sym_BANG] = ACTIONS(1401), + [anon_sym_COLON] = ACTIONS(1399), + [anon_sym_EQ] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1399), + [anon_sym_or] = ACTIONS(1401), + [anon_sym_and] = ACTIONS(1399), + [anon_sym_LBRACE] = ACTIONS(1399), + [anon_sym_RBRACE] = ACTIONS(1399), + [anon_sym_DOT] = ACTIONS(1401), + [anon_sym_LPAREN] = ACTIONS(1399), + [anon_sym_RPAREN] = ACTIONS(1399), + [anon_sym_LBRACK] = ACTIONS(1399), + [anon_sym_RBRACK] = ACTIONS(1399), + [anon_sym_linksection] = ACTIONS(1399), + [anon_sym_PIPE] = ACTIONS(1401), + [anon_sym_STAR] = ACTIONS(1401), + [anon_sym_EQ_GT] = ACTIONS(1399), + [anon_sym_STAR_EQ] = ACTIONS(1399), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1399), + [anon_sym_SLASH_EQ] = ACTIONS(1399), + [anon_sym_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_PLUS_EQ] = ACTIONS(1399), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1399), + [anon_sym_DASH_EQ] = ACTIONS(1399), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_EQ] = ACTIONS(1399), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1399), + [anon_sym_GT_GT_EQ] = ACTIONS(1399), + [anon_sym_AMP_EQ] = ACTIONS(1399), + [anon_sym_CARET_EQ] = ACTIONS(1399), + [anon_sym_PIPE_EQ] = ACTIONS(1399), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1399), + [anon_sym_EQ_EQ] = ACTIONS(1399), + [anon_sym_BANG_EQ] = ACTIONS(1399), + [anon_sym_LT] = ACTIONS(1401), + [anon_sym_GT] = ACTIONS(1401), + [anon_sym_LT_EQ] = ACTIONS(1399), + [anon_sym_GT_EQ] = ACTIONS(1399), + [anon_sym_AMP] = ACTIONS(1401), + [anon_sym_CARET] = ACTIONS(1401), + [anon_sym_orelse] = ACTIONS(1399), + [anon_sym_catch] = ACTIONS(1399), + [anon_sym_LT_LT] = ACTIONS(1401), + [anon_sym_GT_GT] = ACTIONS(1401), + [anon_sym_LT_LT_PIPE] = ACTIONS(1401), + [anon_sym_PLUS] = ACTIONS(1401), + [anon_sym_DASH] = ACTIONS(1401), + [anon_sym_PLUS_PLUS] = ACTIONS(1399), + [anon_sym_PLUS_PERCENT] = ACTIONS(1401), + [anon_sym_DASH_PERCENT] = ACTIONS(1401), + [anon_sym_PLUS_PIPE] = ACTIONS(1401), + [anon_sym_DASH_PIPE] = ACTIONS(1401), + [anon_sym_PIPE_PIPE] = ACTIONS(1399), + [anon_sym_SLASH] = ACTIONS(1401), + [anon_sym_PERCENT] = ACTIONS(1401), + [anon_sym_STAR_STAR] = ACTIONS(1399), + [anon_sym_STAR_PERCENT] = ACTIONS(1401), + [anon_sym_STAR_PIPE] = ACTIONS(1401), + [anon_sym_align] = ACTIONS(1399), + [anon_sym_DOT_DOT] = ACTIONS(1399), + [anon_sym_DOT_STAR] = ACTIONS(1399), + [anon_sym_DOT_QMARK] = ACTIONS(1399), [sym_line_comment] = ACTIONS(95), }, [783] = { - [sym_InitList] = STATE(983), - [sym__ElseTypeExprTail] = STATE(820), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_COLON] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_EQ_GT] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_LT_LT_PIPE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT] = ACTIONS(1385), - [anon_sym_DASH_PERCENT] = ACTIONS(1385), - [anon_sym_PLUS_PIPE] = ACTIONS(1385), - [anon_sym_DASH_PIPE] = ACTIONS(1385), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1383), - [anon_sym_STAR_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_PIPE] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_STAR] = ACTIONS(1309), - [anon_sym_DOT_QMARK] = ACTIONS(1309), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_SEMI] = ACTIONS(1403), + [anon_sym_BANG] = ACTIONS(1405), + [anon_sym_COLON] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1405), + [anon_sym_else] = ACTIONS(1403), + [anon_sym_or] = ACTIONS(1405), + [anon_sym_and] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_RPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_linksection] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_EQ_GT] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_LT] = ACTIONS(1405), + [anon_sym_GT] = ACTIONS(1405), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_orelse] = ACTIONS(1403), + [anon_sym_catch] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1405), + [anon_sym_GT_GT] = ACTIONS(1405), + [anon_sym_LT_LT_PIPE] = ACTIONS(1405), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_PLUS_PLUS] = ACTIONS(1403), + [anon_sym_PLUS_PERCENT] = ACTIONS(1405), + [anon_sym_DASH_PERCENT] = ACTIONS(1405), + [anon_sym_PLUS_PIPE] = ACTIONS(1405), + [anon_sym_DASH_PIPE] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_SLASH] = ACTIONS(1405), + [anon_sym_PERCENT] = ACTIONS(1405), + [anon_sym_STAR_STAR] = ACTIONS(1403), + [anon_sym_STAR_PERCENT] = ACTIONS(1405), + [anon_sym_STAR_PIPE] = ACTIONS(1405), + [anon_sym_align] = ACTIONS(1403), + [anon_sym_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_STAR] = ACTIONS(1403), + [anon_sym_DOT_QMARK] = ACTIONS(1403), [sym_line_comment] = ACTIONS(95), }, [784] = { - [anon_sym_COMMA] = ACTIONS(1393), - [anon_sym_SEMI] = ACTIONS(1393), - [anon_sym_BANG] = ACTIONS(1395), - [anon_sym_COLON] = ACTIONS(1393), - [anon_sym_EQ] = ACTIONS(1395), - [anon_sym_else] = ACTIONS(1393), - [anon_sym_or] = ACTIONS(1395), - [anon_sym_and] = ACTIONS(1393), - [anon_sym_LBRACE] = ACTIONS(1393), - [anon_sym_RBRACE] = ACTIONS(1393), - [anon_sym_DOT] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1393), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_LBRACK] = ACTIONS(1393), - [anon_sym_RBRACK] = ACTIONS(1393), - [anon_sym_linksection] = ACTIONS(1393), - [anon_sym_PIPE] = ACTIONS(1395), - [anon_sym_STAR] = ACTIONS(1395), - [anon_sym_EQ_GT] = ACTIONS(1393), - [anon_sym_STAR_EQ] = ACTIONS(1393), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1393), - [anon_sym_SLASH_EQ] = ACTIONS(1393), - [anon_sym_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_PLUS_EQ] = ACTIONS(1393), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1393), - [anon_sym_DASH_EQ] = ACTIONS(1393), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_EQ] = ACTIONS(1393), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1393), - [anon_sym_GT_GT_EQ] = ACTIONS(1393), - [anon_sym_AMP_EQ] = ACTIONS(1393), - [anon_sym_CARET_EQ] = ACTIONS(1393), - [anon_sym_PIPE_EQ] = ACTIONS(1393), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1393), - [anon_sym_EQ_EQ] = ACTIONS(1393), - [anon_sym_BANG_EQ] = ACTIONS(1393), - [anon_sym_LT] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1393), - [anon_sym_GT_EQ] = ACTIONS(1393), - [anon_sym_AMP] = ACTIONS(1395), - [anon_sym_CARET] = ACTIONS(1395), - [anon_sym_orelse] = ACTIONS(1393), - [anon_sym_catch] = ACTIONS(1393), - [anon_sym_LT_LT] = ACTIONS(1395), - [anon_sym_GT_GT] = ACTIONS(1395), - [anon_sym_LT_LT_PIPE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1395), - [anon_sym_DASH] = ACTIONS(1395), - [anon_sym_PLUS_PLUS] = ACTIONS(1393), - [anon_sym_PLUS_PERCENT] = ACTIONS(1395), - [anon_sym_DASH_PERCENT] = ACTIONS(1395), - [anon_sym_PLUS_PIPE] = ACTIONS(1395), - [anon_sym_DASH_PIPE] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1393), - [anon_sym_SLASH] = ACTIONS(1395), - [anon_sym_PERCENT] = ACTIONS(1395), - [anon_sym_STAR_STAR] = ACTIONS(1393), - [anon_sym_STAR_PERCENT] = ACTIONS(1395), - [anon_sym_STAR_PIPE] = ACTIONS(1395), - [anon_sym_align] = ACTIONS(1393), - [anon_sym_DOT_DOT] = ACTIONS(1393), - [anon_sym_DOT_STAR] = ACTIONS(1393), - [anon_sym_DOT_QMARK] = ACTIONS(1393), + [anon_sym_COMMA] = ACTIONS(1407), + [anon_sym_SEMI] = ACTIONS(1407), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_COLON] = ACTIONS(1407), + [anon_sym_EQ] = ACTIONS(1409), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_or] = ACTIONS(1409), + [anon_sym_and] = ACTIONS(1407), + [anon_sym_LBRACE] = ACTIONS(1407), + [anon_sym_RBRACE] = ACTIONS(1407), + [anon_sym_DOT] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1407), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1407), + [anon_sym_RBRACK] = ACTIONS(1407), + [anon_sym_linksection] = ACTIONS(1407), + [anon_sym_PIPE] = ACTIONS(1409), + [anon_sym_STAR] = ACTIONS(1409), + [anon_sym_EQ_GT] = ACTIONS(1407), + [anon_sym_STAR_EQ] = ACTIONS(1407), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1407), + [anon_sym_SLASH_EQ] = ACTIONS(1407), + [anon_sym_PERCENT_EQ] = ACTIONS(1407), + [anon_sym_PLUS_EQ] = ACTIONS(1407), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1407), + [anon_sym_DASH_EQ] = ACTIONS(1407), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1407), + [anon_sym_LT_LT_EQ] = ACTIONS(1407), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1407), + [anon_sym_GT_GT_EQ] = ACTIONS(1407), + [anon_sym_AMP_EQ] = ACTIONS(1407), + [anon_sym_CARET_EQ] = ACTIONS(1407), + [anon_sym_PIPE_EQ] = ACTIONS(1407), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1407), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1407), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1407), + [anon_sym_EQ_EQ] = ACTIONS(1407), + [anon_sym_BANG_EQ] = ACTIONS(1407), + [anon_sym_LT] = ACTIONS(1409), + [anon_sym_GT] = ACTIONS(1409), + [anon_sym_LT_EQ] = ACTIONS(1407), + [anon_sym_GT_EQ] = ACTIONS(1407), + [anon_sym_AMP] = ACTIONS(1409), + [anon_sym_CARET] = ACTIONS(1409), + [anon_sym_orelse] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_LT_LT] = ACTIONS(1409), + [anon_sym_GT_GT] = ACTIONS(1409), + [anon_sym_LT_LT_PIPE] = ACTIONS(1409), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1407), + [anon_sym_PLUS_PERCENT] = ACTIONS(1409), + [anon_sym_DASH_PERCENT] = ACTIONS(1409), + [anon_sym_PLUS_PIPE] = ACTIONS(1409), + [anon_sym_DASH_PIPE] = ACTIONS(1409), + [anon_sym_PIPE_PIPE] = ACTIONS(1407), + [anon_sym_SLASH] = ACTIONS(1409), + [anon_sym_PERCENT] = ACTIONS(1409), + [anon_sym_STAR_STAR] = ACTIONS(1407), + [anon_sym_STAR_PERCENT] = ACTIONS(1409), + [anon_sym_STAR_PIPE] = ACTIONS(1409), + [anon_sym_align] = ACTIONS(1407), + [anon_sym_DOT_DOT] = ACTIONS(1407), + [anon_sym_DOT_STAR] = ACTIONS(1407), + [anon_sym_DOT_QMARK] = ACTIONS(1407), [sym_line_comment] = ACTIONS(95), }, [785] = { - [sym_InitList] = STATE(983), - [sym__ElseTypeExprTail] = STATE(800), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_COLON] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_EQ_GT] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_LT_LT_PIPE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT] = ACTIONS(1385), - [anon_sym_DASH_PERCENT] = ACTIONS(1385), - [anon_sym_PLUS_PIPE] = ACTIONS(1385), - [anon_sym_DASH_PIPE] = ACTIONS(1385), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1383), - [anon_sym_STAR_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_PIPE] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_STAR] = ACTIONS(1288), - [anon_sym_DOT_QMARK] = ACTIONS(1288), + [anon_sym_COMMA] = ACTIONS(1411), + [anon_sym_SEMI] = ACTIONS(1411), + [anon_sym_BANG] = ACTIONS(1413), + [anon_sym_COLON] = ACTIONS(1411), + [anon_sym_EQ] = ACTIONS(1413), + [anon_sym_else] = ACTIONS(1411), + [anon_sym_or] = ACTIONS(1413), + [anon_sym_and] = ACTIONS(1411), + [anon_sym_LBRACE] = ACTIONS(1411), + [anon_sym_RBRACE] = ACTIONS(1411), + [anon_sym_DOT] = ACTIONS(1413), + [anon_sym_LPAREN] = ACTIONS(1411), + [anon_sym_RPAREN] = ACTIONS(1411), + [anon_sym_LBRACK] = ACTIONS(1411), + [anon_sym_RBRACK] = ACTIONS(1411), + [anon_sym_linksection] = ACTIONS(1411), + [anon_sym_PIPE] = ACTIONS(1413), + [anon_sym_STAR] = ACTIONS(1413), + [anon_sym_EQ_GT] = ACTIONS(1411), + [anon_sym_STAR_EQ] = ACTIONS(1411), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1411), + [anon_sym_SLASH_EQ] = ACTIONS(1411), + [anon_sym_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_PLUS_EQ] = ACTIONS(1411), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1411), + [anon_sym_DASH_EQ] = ACTIONS(1411), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1411), + [anon_sym_LT_LT_EQ] = ACTIONS(1411), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1411), + [anon_sym_GT_GT_EQ] = ACTIONS(1411), + [anon_sym_AMP_EQ] = ACTIONS(1411), + [anon_sym_CARET_EQ] = ACTIONS(1411), + [anon_sym_PIPE_EQ] = ACTIONS(1411), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1411), + [anon_sym_EQ_EQ] = ACTIONS(1411), + [anon_sym_BANG_EQ] = ACTIONS(1411), + [anon_sym_LT] = ACTIONS(1413), + [anon_sym_GT] = ACTIONS(1413), + [anon_sym_LT_EQ] = ACTIONS(1411), + [anon_sym_GT_EQ] = ACTIONS(1411), + [anon_sym_AMP] = ACTIONS(1413), + [anon_sym_CARET] = ACTIONS(1413), + [anon_sym_orelse] = ACTIONS(1411), + [anon_sym_catch] = ACTIONS(1411), + [anon_sym_LT_LT] = ACTIONS(1413), + [anon_sym_GT_GT] = ACTIONS(1413), + [anon_sym_LT_LT_PIPE] = ACTIONS(1413), + [anon_sym_PLUS] = ACTIONS(1413), + [anon_sym_DASH] = ACTIONS(1413), + [anon_sym_PLUS_PLUS] = ACTIONS(1411), + [anon_sym_PLUS_PERCENT] = ACTIONS(1413), + [anon_sym_DASH_PERCENT] = ACTIONS(1413), + [anon_sym_PLUS_PIPE] = ACTIONS(1413), + [anon_sym_DASH_PIPE] = ACTIONS(1413), + [anon_sym_PIPE_PIPE] = ACTIONS(1411), + [anon_sym_SLASH] = ACTIONS(1413), + [anon_sym_PERCENT] = ACTIONS(1413), + [anon_sym_STAR_STAR] = ACTIONS(1411), + [anon_sym_STAR_PERCENT] = ACTIONS(1413), + [anon_sym_STAR_PIPE] = ACTIONS(1413), + [anon_sym_align] = ACTIONS(1411), + [anon_sym_DOT_DOT] = ACTIONS(1411), + [anon_sym_DOT_STAR] = ACTIONS(1411), + [anon_sym_DOT_QMARK] = ACTIONS(1411), [sym_line_comment] = ACTIONS(95), }, [786] = { - [anon_sym_COMMA] = ACTIONS(566), - [anon_sym_SEMI] = ACTIONS(566), - [anon_sym_BANG] = ACTIONS(568), - [anon_sym_COLON] = ACTIONS(566), - [anon_sym_EQ] = ACTIONS(568), - [anon_sym_else] = ACTIONS(566), - [anon_sym_or] = ACTIONS(568), - [anon_sym_and] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(566), - [anon_sym_DOT] = ACTIONS(568), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_RPAREN] = ACTIONS(566), - [anon_sym_LBRACK] = ACTIONS(566), - [anon_sym_RBRACK] = ACTIONS(566), - [anon_sym_linksection] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(568), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_EQ_GT] = ACTIONS(566), - [anon_sym_STAR_EQ] = ACTIONS(566), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(566), - [anon_sym_SLASH_EQ] = ACTIONS(566), - [anon_sym_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_EQ] = ACTIONS(566), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(566), - [anon_sym_DASH_EQ] = ACTIONS(566), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(566), - [anon_sym_LT_LT_EQ] = ACTIONS(566), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(566), - [anon_sym_GT_GT_EQ] = ACTIONS(566), - [anon_sym_AMP_EQ] = ACTIONS(566), - [anon_sym_CARET_EQ] = ACTIONS(566), - [anon_sym_PIPE_EQ] = ACTIONS(566), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(566), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(566), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(566), - [anon_sym_EQ_EQ] = ACTIONS(566), - [anon_sym_BANG_EQ] = ACTIONS(566), - [anon_sym_LT] = ACTIONS(568), - [anon_sym_GT] = ACTIONS(568), - [anon_sym_LT_EQ] = ACTIONS(566), - [anon_sym_GT_EQ] = ACTIONS(566), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_CARET] = ACTIONS(568), - [anon_sym_orelse] = ACTIONS(566), - [anon_sym_catch] = ACTIONS(566), - [anon_sym_LT_LT] = ACTIONS(568), - [anon_sym_GT_GT] = ACTIONS(568), - [anon_sym_LT_LT_PIPE] = ACTIONS(568), - [anon_sym_PLUS] = ACTIONS(568), - [anon_sym_DASH] = ACTIONS(568), - [anon_sym_PLUS_PLUS] = ACTIONS(566), - [anon_sym_PLUS_PERCENT] = ACTIONS(568), - [anon_sym_DASH_PERCENT] = ACTIONS(568), - [anon_sym_PLUS_PIPE] = ACTIONS(568), - [anon_sym_DASH_PIPE] = ACTIONS(568), - [anon_sym_PIPE_PIPE] = ACTIONS(566), - [anon_sym_SLASH] = ACTIONS(568), - [anon_sym_PERCENT] = ACTIONS(568), - [anon_sym_STAR_STAR] = ACTIONS(566), - [anon_sym_STAR_PERCENT] = ACTIONS(568), - [anon_sym_STAR_PIPE] = ACTIONS(568), - [anon_sym_align] = ACTIONS(566), - [anon_sym_DOT_DOT] = ACTIONS(566), - [anon_sym_DOT_STAR] = ACTIONS(566), - [anon_sym_DOT_QMARK] = ACTIONS(566), + [anon_sym_COMMA] = ACTIONS(1415), + [anon_sym_SEMI] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(1417), + [anon_sym_COLON] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_or] = ACTIONS(1417), + [anon_sym_and] = ACTIONS(1415), + [anon_sym_LBRACE] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_RPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_RBRACK] = ACTIONS(1415), + [anon_sym_linksection] = ACTIONS(1415), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_EQ_GT] = ACTIONS(1415), + [anon_sym_STAR_EQ] = ACTIONS(1415), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1415), + [anon_sym_SLASH_EQ] = ACTIONS(1415), + [anon_sym_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_PLUS_EQ] = ACTIONS(1415), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1415), + [anon_sym_DASH_EQ] = ACTIONS(1415), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1415), + [anon_sym_LT_LT_EQ] = ACTIONS(1415), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_AMP_EQ] = ACTIONS(1415), + [anon_sym_CARET_EQ] = ACTIONS(1415), + [anon_sym_PIPE_EQ] = ACTIONS(1415), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_EQ_EQ] = ACTIONS(1415), + [anon_sym_BANG_EQ] = ACTIONS(1415), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_LT_EQ] = ACTIONS(1415), + [anon_sym_GT_EQ] = ACTIONS(1415), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym_orelse] = ACTIONS(1415), + [anon_sym_catch] = ACTIONS(1415), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(1417), + [anon_sym_LT_LT_PIPE] = ACTIONS(1417), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_PLUS_PLUS] = ACTIONS(1415), + [anon_sym_PLUS_PERCENT] = ACTIONS(1417), + [anon_sym_DASH_PERCENT] = ACTIONS(1417), + [anon_sym_PLUS_PIPE] = ACTIONS(1417), + [anon_sym_DASH_PIPE] = ACTIONS(1417), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_SLASH] = ACTIONS(1417), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_STAR_STAR] = ACTIONS(1415), + [anon_sym_STAR_PERCENT] = ACTIONS(1417), + [anon_sym_STAR_PIPE] = ACTIONS(1417), + [anon_sym_align] = ACTIONS(1415), + [anon_sym_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_STAR] = ACTIONS(1415), + [anon_sym_DOT_QMARK] = ACTIONS(1415), [sym_line_comment] = ACTIONS(95), }, [787] = { - [anon_sym_COMMA] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1399), - [anon_sym_COLON] = ACTIONS(1397), - [anon_sym_EQ] = ACTIONS(1399), - [anon_sym_else] = ACTIONS(1397), - [anon_sym_or] = ACTIONS(1399), - [anon_sym_and] = ACTIONS(1397), - [anon_sym_LBRACE] = ACTIONS(1397), - [anon_sym_RBRACE] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1399), - [anon_sym_LPAREN] = ACTIONS(1397), - [anon_sym_RPAREN] = ACTIONS(1397), - [anon_sym_LBRACK] = ACTIONS(1397), - [anon_sym_RBRACK] = ACTIONS(1397), - [anon_sym_linksection] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1399), - [anon_sym_STAR] = ACTIONS(1399), - [anon_sym_EQ_GT] = ACTIONS(1397), - [anon_sym_STAR_EQ] = ACTIONS(1397), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1397), - [anon_sym_SLASH_EQ] = ACTIONS(1397), - [anon_sym_PERCENT_EQ] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1397), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1397), - [anon_sym_DASH_EQ] = ACTIONS(1397), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1397), - [anon_sym_LT_LT_EQ] = ACTIONS(1397), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1397), - [anon_sym_GT_GT_EQ] = ACTIONS(1397), - [anon_sym_AMP_EQ] = ACTIONS(1397), - [anon_sym_CARET_EQ] = ACTIONS(1397), - [anon_sym_PIPE_EQ] = ACTIONS(1397), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1397), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1397), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1397), - [anon_sym_BANG_EQ] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1399), - [anon_sym_GT] = ACTIONS(1399), - [anon_sym_LT_EQ] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1399), - [anon_sym_CARET] = ACTIONS(1399), - [anon_sym_orelse] = ACTIONS(1397), - [anon_sym_catch] = ACTIONS(1397), - [anon_sym_LT_LT] = ACTIONS(1399), - [anon_sym_GT_GT] = ACTIONS(1399), - [anon_sym_LT_LT_PIPE] = ACTIONS(1399), - [anon_sym_PLUS] = ACTIONS(1399), - [anon_sym_DASH] = ACTIONS(1399), - [anon_sym_PLUS_PLUS] = ACTIONS(1397), - [anon_sym_PLUS_PERCENT] = ACTIONS(1399), - [anon_sym_DASH_PERCENT] = ACTIONS(1399), - [anon_sym_PLUS_PIPE] = ACTIONS(1399), - [anon_sym_DASH_PIPE] = ACTIONS(1399), - [anon_sym_PIPE_PIPE] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1399), - [anon_sym_PERCENT] = ACTIONS(1399), - [anon_sym_STAR_STAR] = ACTIONS(1397), - [anon_sym_STAR_PERCENT] = ACTIONS(1399), - [anon_sym_STAR_PIPE] = ACTIONS(1399), - [anon_sym_align] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_STAR] = ACTIONS(1397), - [anon_sym_DOT_QMARK] = ACTIONS(1397), + [anon_sym_COMMA] = ACTIONS(548), + [anon_sym_SEMI] = ACTIONS(548), + [anon_sym_BANG] = ACTIONS(546), + [anon_sym_COLON] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(546), + [anon_sym_else] = ACTIONS(548), + [anon_sym_or] = ACTIONS(546), + [anon_sym_and] = ACTIONS(548), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_RBRACE] = ACTIONS(548), + [anon_sym_DOT] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), + [anon_sym_RPAREN] = ACTIONS(548), + [anon_sym_LBRACK] = ACTIONS(548), + [anon_sym_RBRACK] = ACTIONS(548), + [anon_sym_linksection] = ACTIONS(548), + [anon_sym_PIPE] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(546), + [anon_sym_EQ_GT] = ACTIONS(548), + [anon_sym_STAR_EQ] = ACTIONS(548), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(548), + [anon_sym_SLASH_EQ] = ACTIONS(548), + [anon_sym_PERCENT_EQ] = ACTIONS(548), + [anon_sym_PLUS_EQ] = ACTIONS(548), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(548), + [anon_sym_DASH_EQ] = ACTIONS(548), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(548), + [anon_sym_LT_LT_EQ] = ACTIONS(548), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(548), + [anon_sym_GT_GT_EQ] = ACTIONS(548), + [anon_sym_AMP_EQ] = ACTIONS(548), + [anon_sym_CARET_EQ] = ACTIONS(548), + [anon_sym_PIPE_EQ] = ACTIONS(548), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(548), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(548), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(548), + [anon_sym_EQ_EQ] = ACTIONS(548), + [anon_sym_BANG_EQ] = ACTIONS(548), + [anon_sym_LT] = ACTIONS(546), + [anon_sym_GT] = ACTIONS(546), + [anon_sym_LT_EQ] = ACTIONS(548), + [anon_sym_GT_EQ] = ACTIONS(548), + [anon_sym_AMP] = ACTIONS(546), + [anon_sym_CARET] = ACTIONS(546), + [anon_sym_orelse] = ACTIONS(548), + [anon_sym_catch] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(546), + [anon_sym_GT_GT] = ACTIONS(546), + [anon_sym_LT_LT_PIPE] = ACTIONS(546), + [anon_sym_PLUS] = ACTIONS(546), + [anon_sym_DASH] = ACTIONS(546), + [anon_sym_PLUS_PLUS] = ACTIONS(548), + [anon_sym_PLUS_PERCENT] = ACTIONS(546), + [anon_sym_DASH_PERCENT] = ACTIONS(546), + [anon_sym_PLUS_PIPE] = ACTIONS(546), + [anon_sym_DASH_PIPE] = ACTIONS(546), + [anon_sym_PIPE_PIPE] = ACTIONS(548), + [anon_sym_SLASH] = ACTIONS(546), + [anon_sym_PERCENT] = ACTIONS(546), + [anon_sym_STAR_STAR] = ACTIONS(548), + [anon_sym_STAR_PERCENT] = ACTIONS(546), + [anon_sym_STAR_PIPE] = ACTIONS(546), + [anon_sym_align] = ACTIONS(548), + [anon_sym_DOT_DOT] = ACTIONS(548), + [anon_sym_DOT_STAR] = ACTIONS(548), + [anon_sym_DOT_QMARK] = ACTIONS(548), [sym_line_comment] = ACTIONS(95), }, [788] = { - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1403), - [anon_sym_COLON] = ACTIONS(1401), - [anon_sym_EQ] = ACTIONS(1403), - [anon_sym_else] = ACTIONS(1401), - [anon_sym_or] = ACTIONS(1403), - [anon_sym_and] = ACTIONS(1401), - [anon_sym_LBRACE] = ACTIONS(1401), - [anon_sym_RBRACE] = ACTIONS(1401), - [anon_sym_DOT] = ACTIONS(1403), - [anon_sym_LPAREN] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_LBRACK] = ACTIONS(1401), - [anon_sym_RBRACK] = ACTIONS(1401), - [anon_sym_linksection] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1403), - [anon_sym_STAR] = ACTIONS(1403), - [anon_sym_EQ_GT] = ACTIONS(1401), - [anon_sym_STAR_EQ] = ACTIONS(1401), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1401), - [anon_sym_SLASH_EQ] = ACTIONS(1401), - [anon_sym_PERCENT_EQ] = ACTIONS(1401), - [anon_sym_PLUS_EQ] = ACTIONS(1401), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1401), - [anon_sym_DASH_EQ] = ACTIONS(1401), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1401), - [anon_sym_LT_LT_EQ] = ACTIONS(1401), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1401), - [anon_sym_GT_GT_EQ] = ACTIONS(1401), - [anon_sym_AMP_EQ] = ACTIONS(1401), - [anon_sym_CARET_EQ] = ACTIONS(1401), - [anon_sym_PIPE_EQ] = ACTIONS(1401), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1401), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1401), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1401), - [anon_sym_EQ_EQ] = ACTIONS(1401), - [anon_sym_BANG_EQ] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1401), - [anon_sym_GT_EQ] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1403), - [anon_sym_CARET] = ACTIONS(1403), - [anon_sym_orelse] = ACTIONS(1401), - [anon_sym_catch] = ACTIONS(1401), - [anon_sym_LT_LT] = ACTIONS(1403), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_LT_LT_PIPE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1403), - [anon_sym_DASH] = ACTIONS(1403), - [anon_sym_PLUS_PLUS] = ACTIONS(1401), - [anon_sym_PLUS_PERCENT] = ACTIONS(1403), - [anon_sym_DASH_PERCENT] = ACTIONS(1403), - [anon_sym_PLUS_PIPE] = ACTIONS(1403), - [anon_sym_DASH_PIPE] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_SLASH] = ACTIONS(1403), - [anon_sym_PERCENT] = ACTIONS(1403), - [anon_sym_STAR_STAR] = ACTIONS(1401), - [anon_sym_STAR_PERCENT] = ACTIONS(1403), - [anon_sym_STAR_PIPE] = ACTIONS(1403), - [anon_sym_align] = ACTIONS(1401), - [anon_sym_DOT_DOT] = ACTIONS(1401), - [anon_sym_DOT_STAR] = ACTIONS(1401), - [anon_sym_DOT_QMARK] = ACTIONS(1401), + [anon_sym_COMMA] = ACTIONS(1419), + [anon_sym_SEMI] = ACTIONS(1419), + [anon_sym_BANG] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1419), + [anon_sym_EQ] = ACTIONS(1421), + [anon_sym_else] = ACTIONS(1419), + [anon_sym_or] = ACTIONS(1421), + [anon_sym_and] = ACTIONS(1419), + [anon_sym_LBRACE] = ACTIONS(1419), + [anon_sym_RBRACE] = ACTIONS(1419), + [anon_sym_DOT] = ACTIONS(1421), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_RPAREN] = ACTIONS(1419), + [anon_sym_LBRACK] = ACTIONS(1419), + [anon_sym_RBRACK] = ACTIONS(1419), + [anon_sym_linksection] = ACTIONS(1419), + [anon_sym_PIPE] = ACTIONS(1421), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_EQ_GT] = ACTIONS(1419), + [anon_sym_STAR_EQ] = ACTIONS(1419), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1419), + [anon_sym_SLASH_EQ] = ACTIONS(1419), + [anon_sym_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_PLUS_EQ] = ACTIONS(1419), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1419), + [anon_sym_DASH_EQ] = ACTIONS(1419), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_EQ] = ACTIONS(1419), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1419), + [anon_sym_GT_GT_EQ] = ACTIONS(1419), + [anon_sym_AMP_EQ] = ACTIONS(1419), + [anon_sym_CARET_EQ] = ACTIONS(1419), + [anon_sym_PIPE_EQ] = ACTIONS(1419), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1419), + [anon_sym_EQ_EQ] = ACTIONS(1419), + [anon_sym_BANG_EQ] = ACTIONS(1419), + [anon_sym_LT] = ACTIONS(1421), + [anon_sym_GT] = ACTIONS(1421), + [anon_sym_LT_EQ] = ACTIONS(1419), + [anon_sym_GT_EQ] = ACTIONS(1419), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_CARET] = ACTIONS(1421), + [anon_sym_orelse] = ACTIONS(1419), + [anon_sym_catch] = ACTIONS(1419), + [anon_sym_LT_LT] = ACTIONS(1421), + [anon_sym_GT_GT] = ACTIONS(1421), + [anon_sym_LT_LT_PIPE] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1421), + [anon_sym_DASH] = ACTIONS(1421), + [anon_sym_PLUS_PLUS] = ACTIONS(1419), + [anon_sym_PLUS_PERCENT] = ACTIONS(1421), + [anon_sym_DASH_PERCENT] = ACTIONS(1421), + [anon_sym_PLUS_PIPE] = ACTIONS(1421), + [anon_sym_DASH_PIPE] = ACTIONS(1421), + [anon_sym_PIPE_PIPE] = ACTIONS(1419), + [anon_sym_SLASH] = ACTIONS(1421), + [anon_sym_PERCENT] = ACTIONS(1421), + [anon_sym_STAR_STAR] = ACTIONS(1419), + [anon_sym_STAR_PERCENT] = ACTIONS(1421), + [anon_sym_STAR_PIPE] = ACTIONS(1421), + [anon_sym_align] = ACTIONS(1419), + [anon_sym_DOT_DOT] = ACTIONS(1419), + [anon_sym_DOT_STAR] = ACTIONS(1419), + [anon_sym_DOT_QMARK] = ACTIONS(1419), [sym_line_comment] = ACTIONS(95), }, [789] = { - [anon_sym_COMMA] = ACTIONS(1405), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_BANG] = ACTIONS(1407), - [anon_sym_COLON] = ACTIONS(1405), - [anon_sym_EQ] = ACTIONS(1407), - [anon_sym_else] = ACTIONS(1405), - [anon_sym_or] = ACTIONS(1407), - [anon_sym_and] = ACTIONS(1405), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_RBRACE] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1405), - [anon_sym_RPAREN] = ACTIONS(1405), - [anon_sym_LBRACK] = ACTIONS(1405), - [anon_sym_RBRACK] = ACTIONS(1405), - [anon_sym_linksection] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1407), - [anon_sym_STAR] = ACTIONS(1407), - [anon_sym_EQ_GT] = ACTIONS(1405), - [anon_sym_STAR_EQ] = ACTIONS(1405), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1405), - [anon_sym_SLASH_EQ] = ACTIONS(1405), - [anon_sym_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1405), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1405), - [anon_sym_DASH_EQ] = ACTIONS(1405), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_EQ] = ACTIONS(1405), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1405), - [anon_sym_GT_GT_EQ] = ACTIONS(1405), - [anon_sym_AMP_EQ] = ACTIONS(1405), - [anon_sym_CARET_EQ] = ACTIONS(1405), - [anon_sym_PIPE_EQ] = ACTIONS(1405), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1405), - [anon_sym_BANG_EQ] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1407), - [anon_sym_CARET] = ACTIONS(1407), - [anon_sym_orelse] = ACTIONS(1405), - [anon_sym_catch] = ACTIONS(1405), - [anon_sym_LT_LT] = ACTIONS(1407), - [anon_sym_GT_GT] = ACTIONS(1407), - [anon_sym_LT_LT_PIPE] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1407), - [anon_sym_DASH] = ACTIONS(1407), - [anon_sym_PLUS_PLUS] = ACTIONS(1405), - [anon_sym_PLUS_PERCENT] = ACTIONS(1407), - [anon_sym_DASH_PERCENT] = ACTIONS(1407), - [anon_sym_PLUS_PIPE] = ACTIONS(1407), - [anon_sym_DASH_PIPE] = ACTIONS(1407), - [anon_sym_PIPE_PIPE] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1407), - [anon_sym_PERCENT] = ACTIONS(1407), - [anon_sym_STAR_STAR] = ACTIONS(1405), - [anon_sym_STAR_PERCENT] = ACTIONS(1407), - [anon_sym_STAR_PIPE] = ACTIONS(1407), - [anon_sym_align] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_STAR] = ACTIONS(1405), - [anon_sym_DOT_QMARK] = ACTIONS(1405), + [anon_sym_COMMA] = ACTIONS(1423), + [anon_sym_SEMI] = ACTIONS(1423), + [anon_sym_BANG] = ACTIONS(1425), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [anon_sym_else] = ACTIONS(1423), + [anon_sym_or] = ACTIONS(1425), + [anon_sym_and] = ACTIONS(1423), + [anon_sym_LBRACE] = ACTIONS(1423), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_DOT] = ACTIONS(1425), + [anon_sym_LPAREN] = ACTIONS(1423), + [anon_sym_RPAREN] = ACTIONS(1423), + [anon_sym_LBRACK] = ACTIONS(1423), + [anon_sym_RBRACK] = ACTIONS(1423), + [anon_sym_linksection] = ACTIONS(1423), + [anon_sym_PIPE] = ACTIONS(1425), + [anon_sym_STAR] = ACTIONS(1425), + [anon_sym_EQ_GT] = ACTIONS(1423), + [anon_sym_STAR_EQ] = ACTIONS(1423), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1423), + [anon_sym_SLASH_EQ] = ACTIONS(1423), + [anon_sym_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_PLUS_EQ] = ACTIONS(1423), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1423), + [anon_sym_DASH_EQ] = ACTIONS(1423), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_EQ] = ACTIONS(1423), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1423), + [anon_sym_GT_GT_EQ] = ACTIONS(1423), + [anon_sym_AMP_EQ] = ACTIONS(1423), + [anon_sym_CARET_EQ] = ACTIONS(1423), + [anon_sym_PIPE_EQ] = ACTIONS(1423), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1423), + [anon_sym_EQ_EQ] = ACTIONS(1423), + [anon_sym_BANG_EQ] = ACTIONS(1423), + [anon_sym_LT] = ACTIONS(1425), + [anon_sym_GT] = ACTIONS(1425), + [anon_sym_LT_EQ] = ACTIONS(1423), + [anon_sym_GT_EQ] = ACTIONS(1423), + [anon_sym_AMP] = ACTIONS(1425), + [anon_sym_CARET] = ACTIONS(1425), + [anon_sym_orelse] = ACTIONS(1423), + [anon_sym_catch] = ACTIONS(1423), + [anon_sym_LT_LT] = ACTIONS(1425), + [anon_sym_GT_GT] = ACTIONS(1425), + [anon_sym_LT_LT_PIPE] = ACTIONS(1425), + [anon_sym_PLUS] = ACTIONS(1425), + [anon_sym_DASH] = ACTIONS(1425), + [anon_sym_PLUS_PLUS] = ACTIONS(1423), + [anon_sym_PLUS_PERCENT] = ACTIONS(1425), + [anon_sym_DASH_PERCENT] = ACTIONS(1425), + [anon_sym_PLUS_PIPE] = ACTIONS(1425), + [anon_sym_DASH_PIPE] = ACTIONS(1425), + [anon_sym_PIPE_PIPE] = ACTIONS(1423), + [anon_sym_SLASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), + [anon_sym_STAR_STAR] = ACTIONS(1423), + [anon_sym_STAR_PERCENT] = ACTIONS(1425), + [anon_sym_STAR_PIPE] = ACTIONS(1425), + [anon_sym_align] = ACTIONS(1423), + [anon_sym_DOT_DOT] = ACTIONS(1423), + [anon_sym_DOT_STAR] = ACTIONS(1423), + [anon_sym_DOT_QMARK] = ACTIONS(1423), [sym_line_comment] = ACTIONS(95), }, [790] = { - [anon_sym_COMMA] = ACTIONS(524), - [anon_sym_SEMI] = ACTIONS(524), - [anon_sym_BANG] = ACTIONS(522), - [anon_sym_COLON] = ACTIONS(524), - [anon_sym_EQ] = ACTIONS(522), - [anon_sym_else] = ACTIONS(524), - [anon_sym_or] = ACTIONS(522), - [anon_sym_and] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(522), - [anon_sym_LPAREN] = ACTIONS(524), - [anon_sym_RPAREN] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(524), - [anon_sym_RBRACK] = ACTIONS(524), - [anon_sym_linksection] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(524), - [anon_sym_STAR_EQ] = ACTIONS(524), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(524), - [anon_sym_SLASH_EQ] = ACTIONS(524), - [anon_sym_PERCENT_EQ] = ACTIONS(524), - [anon_sym_PLUS_EQ] = ACTIONS(524), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(524), - [anon_sym_DASH_EQ] = ACTIONS(524), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(524), - [anon_sym_LT_LT_EQ] = ACTIONS(524), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(524), - [anon_sym_GT_GT_EQ] = ACTIONS(524), - [anon_sym_AMP_EQ] = ACTIONS(524), - [anon_sym_CARET_EQ] = ACTIONS(524), - [anon_sym_PIPE_EQ] = ACTIONS(524), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(524), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(524), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(524), - [anon_sym_EQ_EQ] = ACTIONS(524), - [anon_sym_BANG_EQ] = ACTIONS(524), - [anon_sym_LT] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(522), - [anon_sym_LT_EQ] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(524), - [anon_sym_AMP] = ACTIONS(522), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_orelse] = ACTIONS(524), - [anon_sym_catch] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(522), - [anon_sym_LT_LT_PIPE] = ACTIONS(522), - [anon_sym_PLUS] = ACTIONS(522), - [anon_sym_DASH] = ACTIONS(522), - [anon_sym_PLUS_PLUS] = ACTIONS(524), - [anon_sym_PLUS_PERCENT] = ACTIONS(522), - [anon_sym_DASH_PERCENT] = ACTIONS(522), - [anon_sym_PLUS_PIPE] = ACTIONS(522), - [anon_sym_DASH_PIPE] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(524), - [anon_sym_SLASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR_STAR] = ACTIONS(524), - [anon_sym_STAR_PERCENT] = ACTIONS(522), - [anon_sym_STAR_PIPE] = ACTIONS(522), - [anon_sym_align] = ACTIONS(524), - [anon_sym_DOT_DOT] = ACTIONS(524), - [anon_sym_DOT_STAR] = ACTIONS(524), - [anon_sym_DOT_QMARK] = ACTIONS(524), + [anon_sym_COMMA] = ACTIONS(1427), + [anon_sym_SEMI] = ACTIONS(1427), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_COLON] = ACTIONS(1427), + [anon_sym_EQ] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1427), + [anon_sym_or] = ACTIONS(1429), + [anon_sym_and] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(1427), + [anon_sym_RBRACE] = ACTIONS(1427), + [anon_sym_DOT] = ACTIONS(1429), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_RPAREN] = ACTIONS(1427), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_RBRACK] = ACTIONS(1427), + [anon_sym_linksection] = ACTIONS(1427), + [anon_sym_PIPE] = ACTIONS(1429), + [anon_sym_STAR] = ACTIONS(1429), + [anon_sym_EQ_GT] = ACTIONS(1427), + [anon_sym_STAR_EQ] = ACTIONS(1427), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1427), + [anon_sym_SLASH_EQ] = ACTIONS(1427), + [anon_sym_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_PLUS_EQ] = ACTIONS(1427), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1427), + [anon_sym_DASH_EQ] = ACTIONS(1427), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_EQ] = ACTIONS(1427), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1427), + [anon_sym_GT_GT_EQ] = ACTIONS(1427), + [anon_sym_AMP_EQ] = ACTIONS(1427), + [anon_sym_CARET_EQ] = ACTIONS(1427), + [anon_sym_PIPE_EQ] = ACTIONS(1427), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1427), + [anon_sym_EQ_EQ] = ACTIONS(1427), + [anon_sym_BANG_EQ] = ACTIONS(1427), + [anon_sym_LT] = ACTIONS(1429), + [anon_sym_GT] = ACTIONS(1429), + [anon_sym_LT_EQ] = ACTIONS(1427), + [anon_sym_GT_EQ] = ACTIONS(1427), + [anon_sym_AMP] = ACTIONS(1429), + [anon_sym_CARET] = ACTIONS(1429), + [anon_sym_orelse] = ACTIONS(1427), + [anon_sym_catch] = ACTIONS(1427), + [anon_sym_LT_LT] = ACTIONS(1429), + [anon_sym_GT_GT] = ACTIONS(1429), + [anon_sym_LT_LT_PIPE] = ACTIONS(1429), + [anon_sym_PLUS] = ACTIONS(1429), + [anon_sym_DASH] = ACTIONS(1429), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_PLUS_PERCENT] = ACTIONS(1429), + [anon_sym_DASH_PERCENT] = ACTIONS(1429), + [anon_sym_PLUS_PIPE] = ACTIONS(1429), + [anon_sym_DASH_PIPE] = ACTIONS(1429), + [anon_sym_PIPE_PIPE] = ACTIONS(1427), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_STAR] = ACTIONS(1427), + [anon_sym_STAR_PERCENT] = ACTIONS(1429), + [anon_sym_STAR_PIPE] = ACTIONS(1429), + [anon_sym_align] = ACTIONS(1427), + [anon_sym_DOT_DOT] = ACTIONS(1427), + [anon_sym_DOT_STAR] = ACTIONS(1427), + [anon_sym_DOT_QMARK] = ACTIONS(1427), [sym_line_comment] = ACTIONS(95), }, [791] = { - [anon_sym_COMMA] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1411), - [anon_sym_COLON] = ACTIONS(1409), - [anon_sym_EQ] = ACTIONS(1411), - [anon_sym_else] = ACTIONS(1409), - [anon_sym_or] = ACTIONS(1411), - [anon_sym_and] = ACTIONS(1409), - [anon_sym_LBRACE] = ACTIONS(1409), - [anon_sym_RBRACE] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(1409), - [anon_sym_RPAREN] = ACTIONS(1409), - [anon_sym_LBRACK] = ACTIONS(1409), - [anon_sym_RBRACK] = ACTIONS(1409), - [anon_sym_linksection] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1411), - [anon_sym_STAR] = ACTIONS(1411), - [anon_sym_EQ_GT] = ACTIONS(1409), - [anon_sym_STAR_EQ] = ACTIONS(1409), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1409), - [anon_sym_SLASH_EQ] = ACTIONS(1409), - [anon_sym_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1409), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1409), - [anon_sym_DASH_EQ] = ACTIONS(1409), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_EQ] = ACTIONS(1409), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1409), - [anon_sym_GT_GT_EQ] = ACTIONS(1409), - [anon_sym_AMP_EQ] = ACTIONS(1409), - [anon_sym_CARET_EQ] = ACTIONS(1409), - [anon_sym_PIPE_EQ] = ACTIONS(1409), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1409), - [anon_sym_BANG_EQ] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1411), - [anon_sym_CARET] = ACTIONS(1411), - [anon_sym_orelse] = ACTIONS(1409), - [anon_sym_catch] = ACTIONS(1409), - [anon_sym_LT_LT] = ACTIONS(1411), - [anon_sym_GT_GT] = ACTIONS(1411), - [anon_sym_LT_LT_PIPE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1411), - [anon_sym_DASH] = ACTIONS(1411), - [anon_sym_PLUS_PLUS] = ACTIONS(1409), - [anon_sym_PLUS_PERCENT] = ACTIONS(1411), - [anon_sym_DASH_PERCENT] = ACTIONS(1411), - [anon_sym_PLUS_PIPE] = ACTIONS(1411), - [anon_sym_DASH_PIPE] = ACTIONS(1411), - [anon_sym_PIPE_PIPE] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1411), - [anon_sym_PERCENT] = ACTIONS(1411), - [anon_sym_STAR_STAR] = ACTIONS(1409), - [anon_sym_STAR_PERCENT] = ACTIONS(1411), - [anon_sym_STAR_PIPE] = ACTIONS(1411), - [anon_sym_align] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_STAR] = ACTIONS(1409), - [anon_sym_DOT_QMARK] = ACTIONS(1409), + [anon_sym_COMMA] = ACTIONS(1431), + [anon_sym_SEMI] = ACTIONS(1431), + [anon_sym_BANG] = ACTIONS(1433), + [anon_sym_COLON] = ACTIONS(1431), + [anon_sym_EQ] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_or] = ACTIONS(1433), + [anon_sym_and] = ACTIONS(1431), + [anon_sym_LBRACE] = ACTIONS(1431), + [anon_sym_RBRACE] = ACTIONS(1431), + [anon_sym_DOT] = ACTIONS(1433), + [anon_sym_LPAREN] = ACTIONS(1431), + [anon_sym_RPAREN] = ACTIONS(1431), + [anon_sym_LBRACK] = ACTIONS(1431), + [anon_sym_RBRACK] = ACTIONS(1431), + [anon_sym_linksection] = ACTIONS(1431), + [anon_sym_PIPE] = ACTIONS(1433), + [anon_sym_STAR] = ACTIONS(1433), + [anon_sym_EQ_GT] = ACTIONS(1431), + [anon_sym_STAR_EQ] = ACTIONS(1431), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1431), + [anon_sym_SLASH_EQ] = ACTIONS(1431), + [anon_sym_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1431), + [anon_sym_DASH_EQ] = ACTIONS(1431), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_EQ] = ACTIONS(1431), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1431), + [anon_sym_GT_GT_EQ] = ACTIONS(1431), + [anon_sym_AMP_EQ] = ACTIONS(1431), + [anon_sym_CARET_EQ] = ACTIONS(1431), + [anon_sym_PIPE_EQ] = ACTIONS(1431), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1431), + [anon_sym_EQ_EQ] = ACTIONS(1431), + [anon_sym_BANG_EQ] = ACTIONS(1431), + [anon_sym_LT] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1431), + [anon_sym_GT_EQ] = ACTIONS(1431), + [anon_sym_AMP] = ACTIONS(1433), + [anon_sym_CARET] = ACTIONS(1433), + [anon_sym_orelse] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_LT_LT] = ACTIONS(1433), + [anon_sym_GT_GT] = ACTIONS(1433), + [anon_sym_LT_LT_PIPE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_PLUS_PLUS] = ACTIONS(1431), + [anon_sym_PLUS_PERCENT] = ACTIONS(1433), + [anon_sym_DASH_PERCENT] = ACTIONS(1433), + [anon_sym_PLUS_PIPE] = ACTIONS(1433), + [anon_sym_DASH_PIPE] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1431), + [anon_sym_SLASH] = ACTIONS(1433), + [anon_sym_PERCENT] = ACTIONS(1433), + [anon_sym_STAR_STAR] = ACTIONS(1431), + [anon_sym_STAR_PERCENT] = ACTIONS(1433), + [anon_sym_STAR_PIPE] = ACTIONS(1433), + [anon_sym_align] = ACTIONS(1431), + [anon_sym_DOT_DOT] = ACTIONS(1431), + [anon_sym_DOT_STAR] = ACTIONS(1431), + [anon_sym_DOT_QMARK] = ACTIONS(1431), [sym_line_comment] = ACTIONS(95), }, [792] = { - [anon_sym_COMMA] = ACTIONS(1413), - [anon_sym_SEMI] = ACTIONS(1413), - [anon_sym_BANG] = ACTIONS(1415), - [anon_sym_COLON] = ACTIONS(1413), - [anon_sym_EQ] = ACTIONS(1415), - [anon_sym_else] = ACTIONS(1413), - [anon_sym_or] = ACTIONS(1415), - [anon_sym_and] = ACTIONS(1413), - [anon_sym_LBRACE] = ACTIONS(1413), - [anon_sym_RBRACE] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1415), - [anon_sym_LPAREN] = ACTIONS(1413), - [anon_sym_RPAREN] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1413), - [anon_sym_RBRACK] = ACTIONS(1413), - [anon_sym_linksection] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1415), - [anon_sym_STAR] = ACTIONS(1415), - [anon_sym_EQ_GT] = ACTIONS(1413), - [anon_sym_STAR_EQ] = ACTIONS(1413), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1413), - [anon_sym_SLASH_EQ] = ACTIONS(1413), - [anon_sym_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_PLUS_EQ] = ACTIONS(1413), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1413), - [anon_sym_DASH_EQ] = ACTIONS(1413), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_EQ] = ACTIONS(1413), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1413), - [anon_sym_GT_GT_EQ] = ACTIONS(1413), - [anon_sym_AMP_EQ] = ACTIONS(1413), - [anon_sym_CARET_EQ] = ACTIONS(1413), - [anon_sym_PIPE_EQ] = ACTIONS(1413), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1413), - [anon_sym_BANG_EQ] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1415), - [anon_sym_GT] = ACTIONS(1415), - [anon_sym_LT_EQ] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1415), - [anon_sym_CARET] = ACTIONS(1415), - [anon_sym_orelse] = ACTIONS(1413), - [anon_sym_catch] = ACTIONS(1413), - [anon_sym_LT_LT] = ACTIONS(1415), - [anon_sym_GT_GT] = ACTIONS(1415), - [anon_sym_LT_LT_PIPE] = ACTIONS(1415), - [anon_sym_PLUS] = ACTIONS(1415), - [anon_sym_DASH] = ACTIONS(1415), - [anon_sym_PLUS_PLUS] = ACTIONS(1413), - [anon_sym_PLUS_PERCENT] = ACTIONS(1415), - [anon_sym_DASH_PERCENT] = ACTIONS(1415), - [anon_sym_PLUS_PIPE] = ACTIONS(1415), - [anon_sym_DASH_PIPE] = ACTIONS(1415), - [anon_sym_PIPE_PIPE] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1415), - [anon_sym_PERCENT] = ACTIONS(1415), - [anon_sym_STAR_STAR] = ACTIONS(1413), - [anon_sym_STAR_PERCENT] = ACTIONS(1415), - [anon_sym_STAR_PIPE] = ACTIONS(1415), - [anon_sym_align] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_STAR] = ACTIONS(1413), - [anon_sym_DOT_QMARK] = ACTIONS(1413), + [anon_sym_COMMA] = ACTIONS(1435), + [anon_sym_SEMI] = ACTIONS(1435), + [anon_sym_BANG] = ACTIONS(1437), + [anon_sym_COLON] = ACTIONS(1435), + [anon_sym_EQ] = ACTIONS(1437), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_or] = ACTIONS(1437), + [anon_sym_and] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1435), + [anon_sym_RBRACE] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1435), + [anon_sym_RPAREN] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1435), + [anon_sym_RBRACK] = ACTIONS(1435), + [anon_sym_linksection] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1437), + [anon_sym_STAR] = ACTIONS(1437), + [anon_sym_EQ_GT] = ACTIONS(1435), + [anon_sym_STAR_EQ] = ACTIONS(1435), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1435), + [anon_sym_SLASH_EQ] = ACTIONS(1435), + [anon_sym_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1435), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1435), + [anon_sym_DASH_EQ] = ACTIONS(1435), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_EQ] = ACTIONS(1435), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1435), + [anon_sym_GT_GT_EQ] = ACTIONS(1435), + [anon_sym_AMP_EQ] = ACTIONS(1435), + [anon_sym_CARET_EQ] = ACTIONS(1435), + [anon_sym_PIPE_EQ] = ACTIONS(1435), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1435), + [anon_sym_BANG_EQ] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1437), + [anon_sym_CARET] = ACTIONS(1437), + [anon_sym_orelse] = ACTIONS(1435), + [anon_sym_catch] = ACTIONS(1435), + [anon_sym_LT_LT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1437), + [anon_sym_LT_LT_PIPE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1437), + [anon_sym_DASH] = ACTIONS(1437), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_PLUS_PERCENT] = ACTIONS(1437), + [anon_sym_DASH_PERCENT] = ACTIONS(1437), + [anon_sym_PLUS_PIPE] = ACTIONS(1437), + [anon_sym_DASH_PIPE] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1437), + [anon_sym_PERCENT] = ACTIONS(1437), + [anon_sym_STAR_STAR] = ACTIONS(1435), + [anon_sym_STAR_PERCENT] = ACTIONS(1437), + [anon_sym_STAR_PIPE] = ACTIONS(1437), + [anon_sym_align] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_STAR] = ACTIONS(1435), + [anon_sym_DOT_QMARK] = ACTIONS(1435), [sym_line_comment] = ACTIONS(95), }, [793] = { - [anon_sym_COMMA] = ACTIONS(1417), - [anon_sym_SEMI] = ACTIONS(1417), - [anon_sym_BANG] = ACTIONS(1419), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_EQ] = ACTIONS(1419), - [anon_sym_else] = ACTIONS(1417), - [anon_sym_or] = ACTIONS(1419), - [anon_sym_and] = ACTIONS(1417), - [anon_sym_LBRACE] = ACTIONS(1417), - [anon_sym_RBRACE] = ACTIONS(1417), - [anon_sym_DOT] = ACTIONS(1419), - [anon_sym_LPAREN] = ACTIONS(1417), - [anon_sym_RPAREN] = ACTIONS(1417), - [anon_sym_LBRACK] = ACTIONS(1417), - [anon_sym_RBRACK] = ACTIONS(1417), - [anon_sym_linksection] = ACTIONS(1417), - [anon_sym_PIPE] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1419), - [anon_sym_EQ_GT] = ACTIONS(1417), - [anon_sym_STAR_EQ] = ACTIONS(1417), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1417), - [anon_sym_SLASH_EQ] = ACTIONS(1417), - [anon_sym_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_PLUS_EQ] = ACTIONS(1417), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1417), - [anon_sym_DASH_EQ] = ACTIONS(1417), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_EQ] = ACTIONS(1417), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1417), - [anon_sym_GT_GT_EQ] = ACTIONS(1417), - [anon_sym_AMP_EQ] = ACTIONS(1417), - [anon_sym_CARET_EQ] = ACTIONS(1417), - [anon_sym_PIPE_EQ] = ACTIONS(1417), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1417), - [anon_sym_EQ_EQ] = ACTIONS(1417), - [anon_sym_BANG_EQ] = ACTIONS(1417), - [anon_sym_LT] = ACTIONS(1419), - [anon_sym_GT] = ACTIONS(1419), - [anon_sym_LT_EQ] = ACTIONS(1417), - [anon_sym_GT_EQ] = ACTIONS(1417), - [anon_sym_AMP] = ACTIONS(1419), - [anon_sym_CARET] = ACTIONS(1419), - [anon_sym_orelse] = ACTIONS(1417), - [anon_sym_catch] = ACTIONS(1417), - [anon_sym_LT_LT] = ACTIONS(1419), - [anon_sym_GT_GT] = ACTIONS(1419), - [anon_sym_LT_LT_PIPE] = ACTIONS(1419), - [anon_sym_PLUS] = ACTIONS(1419), - [anon_sym_DASH] = ACTIONS(1419), - [anon_sym_PLUS_PLUS] = ACTIONS(1417), - [anon_sym_PLUS_PERCENT] = ACTIONS(1419), - [anon_sym_DASH_PERCENT] = ACTIONS(1419), - [anon_sym_PLUS_PIPE] = ACTIONS(1419), - [anon_sym_DASH_PIPE] = ACTIONS(1419), - [anon_sym_PIPE_PIPE] = ACTIONS(1417), - [anon_sym_SLASH] = ACTIONS(1419), - [anon_sym_PERCENT] = ACTIONS(1419), - [anon_sym_STAR_STAR] = ACTIONS(1417), - [anon_sym_STAR_PERCENT] = ACTIONS(1419), - [anon_sym_STAR_PIPE] = ACTIONS(1419), - [anon_sym_align] = ACTIONS(1417), - [anon_sym_DOT_DOT] = ACTIONS(1417), - [anon_sym_DOT_STAR] = ACTIONS(1417), - [anon_sym_DOT_QMARK] = ACTIONS(1417), + [anon_sym_COMMA] = ACTIONS(1439), + [anon_sym_SEMI] = ACTIONS(1439), + [anon_sym_BANG] = ACTIONS(1441), + [anon_sym_COLON] = ACTIONS(1439), + [anon_sym_EQ] = ACTIONS(1441), + [anon_sym_else] = ACTIONS(1439), + [anon_sym_or] = ACTIONS(1441), + [anon_sym_and] = ACTIONS(1439), + [anon_sym_LBRACE] = ACTIONS(1439), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1439), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_LBRACK] = ACTIONS(1439), + [anon_sym_RBRACK] = ACTIONS(1439), + [anon_sym_linksection] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_STAR] = ACTIONS(1441), + [anon_sym_EQ_GT] = ACTIONS(1439), + [anon_sym_STAR_EQ] = ACTIONS(1439), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1439), + [anon_sym_SLASH_EQ] = ACTIONS(1439), + [anon_sym_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1439), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1439), + [anon_sym_DASH_EQ] = ACTIONS(1439), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_EQ] = ACTIONS(1439), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1439), + [anon_sym_GT_GT_EQ] = ACTIONS(1439), + [anon_sym_AMP_EQ] = ACTIONS(1439), + [anon_sym_CARET_EQ] = ACTIONS(1439), + [anon_sym_PIPE_EQ] = ACTIONS(1439), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1439), + [anon_sym_BANG_EQ] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_CARET] = ACTIONS(1441), + [anon_sym_orelse] = ACTIONS(1439), + [anon_sym_catch] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1441), + [anon_sym_GT_GT] = ACTIONS(1441), + [anon_sym_LT_LT_PIPE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1441), + [anon_sym_DASH] = ACTIONS(1441), + [anon_sym_PLUS_PLUS] = ACTIONS(1439), + [anon_sym_PLUS_PERCENT] = ACTIONS(1441), + [anon_sym_DASH_PERCENT] = ACTIONS(1441), + [anon_sym_PLUS_PIPE] = ACTIONS(1441), + [anon_sym_DASH_PIPE] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1441), + [anon_sym_PERCENT] = ACTIONS(1441), + [anon_sym_STAR_STAR] = ACTIONS(1439), + [anon_sym_STAR_PERCENT] = ACTIONS(1441), + [anon_sym_STAR_PIPE] = ACTIONS(1441), + [anon_sym_align] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_STAR] = ACTIONS(1439), + [anon_sym_DOT_QMARK] = ACTIONS(1439), [sym_line_comment] = ACTIONS(95), }, [794] = { - [anon_sym_COMMA] = ACTIONS(1421), - [anon_sym_SEMI] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1423), - [anon_sym_COLON] = ACTIONS(1421), - [anon_sym_EQ] = ACTIONS(1423), - [anon_sym_else] = ACTIONS(1421), - [anon_sym_or] = ACTIONS(1423), - [anon_sym_and] = ACTIONS(1421), - [anon_sym_LBRACE] = ACTIONS(1421), - [anon_sym_RBRACE] = ACTIONS(1421), - [anon_sym_DOT] = ACTIONS(1423), - [anon_sym_LPAREN] = ACTIONS(1421), - [anon_sym_RPAREN] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(1421), - [anon_sym_RBRACK] = ACTIONS(1421), - [anon_sym_linksection] = ACTIONS(1421), - [anon_sym_PIPE] = ACTIONS(1423), - [anon_sym_STAR] = ACTIONS(1423), - [anon_sym_EQ_GT] = ACTIONS(1421), - [anon_sym_STAR_EQ] = ACTIONS(1421), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1421), - [anon_sym_SLASH_EQ] = ACTIONS(1421), - [anon_sym_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_PLUS_EQ] = ACTIONS(1421), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1421), - [anon_sym_DASH_EQ] = ACTIONS(1421), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_EQ] = ACTIONS(1421), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1421), - [anon_sym_GT_GT_EQ] = ACTIONS(1421), - [anon_sym_AMP_EQ] = ACTIONS(1421), - [anon_sym_CARET_EQ] = ACTIONS(1421), - [anon_sym_PIPE_EQ] = ACTIONS(1421), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1421), - [anon_sym_EQ_EQ] = ACTIONS(1421), - [anon_sym_BANG_EQ] = ACTIONS(1421), - [anon_sym_LT] = ACTIONS(1423), - [anon_sym_GT] = ACTIONS(1423), - [anon_sym_LT_EQ] = ACTIONS(1421), - [anon_sym_GT_EQ] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(1423), - [anon_sym_CARET] = ACTIONS(1423), - [anon_sym_orelse] = ACTIONS(1421), - [anon_sym_catch] = ACTIONS(1421), - [anon_sym_LT_LT] = ACTIONS(1423), - [anon_sym_GT_GT] = ACTIONS(1423), - [anon_sym_LT_LT_PIPE] = ACTIONS(1423), - [anon_sym_PLUS] = ACTIONS(1423), - [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_PLUS_PLUS] = ACTIONS(1421), - [anon_sym_PLUS_PERCENT] = ACTIONS(1423), - [anon_sym_DASH_PERCENT] = ACTIONS(1423), - [anon_sym_PLUS_PIPE] = ACTIONS(1423), - [anon_sym_DASH_PIPE] = ACTIONS(1423), - [anon_sym_PIPE_PIPE] = ACTIONS(1421), - [anon_sym_SLASH] = ACTIONS(1423), - [anon_sym_PERCENT] = ACTIONS(1423), - [anon_sym_STAR_STAR] = ACTIONS(1421), - [anon_sym_STAR_PERCENT] = ACTIONS(1423), - [anon_sym_STAR_PIPE] = ACTIONS(1423), - [anon_sym_align] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1421), - [anon_sym_DOT_STAR] = ACTIONS(1421), - [anon_sym_DOT_QMARK] = ACTIONS(1421), + [anon_sym_COMMA] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_COLON] = ACTIONS(1443), + [anon_sym_EQ] = ACTIONS(1445), + [anon_sym_else] = ACTIONS(1443), + [anon_sym_or] = ACTIONS(1445), + [anon_sym_and] = ACTIONS(1443), + [anon_sym_LBRACE] = ACTIONS(1443), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1443), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_LBRACK] = ACTIONS(1443), + [anon_sym_RBRACK] = ACTIONS(1443), + [anon_sym_linksection] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_EQ_GT] = ACTIONS(1443), + [anon_sym_STAR_EQ] = ACTIONS(1443), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1443), + [anon_sym_SLASH_EQ] = ACTIONS(1443), + [anon_sym_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1443), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1443), + [anon_sym_DASH_EQ] = ACTIONS(1443), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_EQ] = ACTIONS(1443), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1443), + [anon_sym_GT_GT_EQ] = ACTIONS(1443), + [anon_sym_AMP_EQ] = ACTIONS(1443), + [anon_sym_CARET_EQ] = ACTIONS(1443), + [anon_sym_PIPE_EQ] = ACTIONS(1443), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1443), + [anon_sym_BANG_EQ] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_GT] = ACTIONS(1445), + [anon_sym_LT_EQ] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1445), + [anon_sym_orelse] = ACTIONS(1443), + [anon_sym_catch] = ACTIONS(1443), + [anon_sym_LT_LT] = ACTIONS(1445), + [anon_sym_GT_GT] = ACTIONS(1445), + [anon_sym_LT_LT_PIPE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1445), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_PLUS_PLUS] = ACTIONS(1443), + [anon_sym_PLUS_PERCENT] = ACTIONS(1445), + [anon_sym_DASH_PERCENT] = ACTIONS(1445), + [anon_sym_PLUS_PIPE] = ACTIONS(1445), + [anon_sym_DASH_PIPE] = ACTIONS(1445), + [anon_sym_PIPE_PIPE] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1445), + [anon_sym_PERCENT] = ACTIONS(1445), + [anon_sym_STAR_STAR] = ACTIONS(1443), + [anon_sym_STAR_PERCENT] = ACTIONS(1445), + [anon_sym_STAR_PIPE] = ACTIONS(1445), + [anon_sym_align] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_STAR] = ACTIONS(1443), + [anon_sym_DOT_QMARK] = ACTIONS(1443), [sym_line_comment] = ACTIONS(95), }, [795] = { - [anon_sym_COMMA] = ACTIONS(1425), - [anon_sym_SEMI] = ACTIONS(1425), - [anon_sym_BANG] = ACTIONS(1427), - [anon_sym_COLON] = ACTIONS(1425), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_else] = ACTIONS(1425), - [anon_sym_or] = ACTIONS(1427), - [anon_sym_and] = ACTIONS(1425), - [anon_sym_LBRACE] = ACTIONS(1425), - [anon_sym_RBRACE] = ACTIONS(1425), - [anon_sym_DOT] = ACTIONS(1427), - [anon_sym_LPAREN] = ACTIONS(1425), - [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1425), - [anon_sym_RBRACK] = ACTIONS(1425), - [anon_sym_linksection] = ACTIONS(1425), - [anon_sym_PIPE] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1427), - [anon_sym_EQ_GT] = ACTIONS(1425), - [anon_sym_STAR_EQ] = ACTIONS(1425), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1425), - [anon_sym_SLASH_EQ] = ACTIONS(1425), - [anon_sym_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_PLUS_EQ] = ACTIONS(1425), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1425), - [anon_sym_DASH_EQ] = ACTIONS(1425), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1425), - [anon_sym_LT_LT_EQ] = ACTIONS(1425), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1425), - [anon_sym_GT_GT_EQ] = ACTIONS(1425), - [anon_sym_AMP_EQ] = ACTIONS(1425), - [anon_sym_CARET_EQ] = ACTIONS(1425), - [anon_sym_PIPE_EQ] = ACTIONS(1425), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1425), - [anon_sym_EQ_EQ] = ACTIONS(1425), - [anon_sym_BANG_EQ] = ACTIONS(1425), - [anon_sym_LT] = ACTIONS(1427), - [anon_sym_GT] = ACTIONS(1427), - [anon_sym_LT_EQ] = ACTIONS(1425), - [anon_sym_GT_EQ] = ACTIONS(1425), - [anon_sym_AMP] = ACTIONS(1427), - [anon_sym_CARET] = ACTIONS(1427), - [anon_sym_orelse] = ACTIONS(1425), - [anon_sym_catch] = ACTIONS(1425), - [anon_sym_LT_LT] = ACTIONS(1427), - [anon_sym_GT_GT] = ACTIONS(1427), - [anon_sym_LT_LT_PIPE] = ACTIONS(1427), - [anon_sym_PLUS] = ACTIONS(1427), - [anon_sym_DASH] = ACTIONS(1427), - [anon_sym_PLUS_PLUS] = ACTIONS(1425), - [anon_sym_PLUS_PERCENT] = ACTIONS(1427), - [anon_sym_DASH_PERCENT] = ACTIONS(1427), - [anon_sym_PLUS_PIPE] = ACTIONS(1427), - [anon_sym_DASH_PIPE] = ACTIONS(1427), - [anon_sym_PIPE_PIPE] = ACTIONS(1425), - [anon_sym_SLASH] = ACTIONS(1427), - [anon_sym_PERCENT] = ACTIONS(1427), - [anon_sym_STAR_STAR] = ACTIONS(1425), - [anon_sym_STAR_PERCENT] = ACTIONS(1427), - [anon_sym_STAR_PIPE] = ACTIONS(1427), - [anon_sym_align] = ACTIONS(1425), - [anon_sym_DOT_DOT] = ACTIONS(1425), - [anon_sym_DOT_STAR] = ACTIONS(1425), - [anon_sym_DOT_QMARK] = ACTIONS(1425), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_COLON] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1447), + [anon_sym_or] = ACTIONS(1449), + [anon_sym_and] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_linksection] = ACTIONS(1447), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_STAR_EQ] = ACTIONS(1447), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1447), + [anon_sym_SLASH_EQ] = ACTIONS(1447), + [anon_sym_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_PLUS_EQ] = ACTIONS(1447), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1447), + [anon_sym_DASH_EQ] = ACTIONS(1447), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_EQ] = ACTIONS(1447), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1447), + [anon_sym_GT_GT_EQ] = ACTIONS(1447), + [anon_sym_AMP_EQ] = ACTIONS(1447), + [anon_sym_CARET_EQ] = ACTIONS(1447), + [anon_sym_PIPE_EQ] = ACTIONS(1447), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1449), + [anon_sym_orelse] = ACTIONS(1447), + [anon_sym_catch] = ACTIONS(1447), + [anon_sym_LT_LT] = ACTIONS(1449), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_LT_LT_PIPE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_PLUS_PERCENT] = ACTIONS(1449), + [anon_sym_DASH_PERCENT] = ACTIONS(1449), + [anon_sym_PLUS_PIPE] = ACTIONS(1449), + [anon_sym_DASH_PIPE] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PERCENT] = ACTIONS(1449), + [anon_sym_STAR_STAR] = ACTIONS(1447), + [anon_sym_STAR_PERCENT] = ACTIONS(1449), + [anon_sym_STAR_PIPE] = ACTIONS(1449), + [anon_sym_align] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1447), + [anon_sym_DOT_STAR] = ACTIONS(1447), + [anon_sym_DOT_QMARK] = ACTIONS(1447), [sym_line_comment] = ACTIONS(95), }, [796] = { - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_SEMI] = ACTIONS(1429), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_else] = ACTIONS(1429), - [anon_sym_or] = ACTIONS(1431), - [anon_sym_and] = ACTIONS(1429), - [anon_sym_LBRACE] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_RPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(1429), - [anon_sym_linksection] = ACTIONS(1429), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_EQ_GT] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1429), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1429), - [anon_sym_SLASH_EQ] = ACTIONS(1429), - [anon_sym_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_PLUS_EQ] = ACTIONS(1429), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1429), - [anon_sym_DASH_EQ] = ACTIONS(1429), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1429), - [anon_sym_GT_GT_EQ] = ACTIONS(1429), - [anon_sym_AMP_EQ] = ACTIONS(1429), - [anon_sym_CARET_EQ] = ACTIONS(1429), - [anon_sym_PIPE_EQ] = ACTIONS(1429), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_orelse] = ACTIONS(1429), - [anon_sym_catch] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_LT_LT_PIPE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_PLUS_PLUS] = ACTIONS(1429), - [anon_sym_PLUS_PERCENT] = ACTIONS(1431), - [anon_sym_DASH_PERCENT] = ACTIONS(1431), - [anon_sym_PLUS_PIPE] = ACTIONS(1431), - [anon_sym_DASH_PIPE] = ACTIONS(1431), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_STAR_STAR] = ACTIONS(1429), - [anon_sym_STAR_PERCENT] = ACTIONS(1431), - [anon_sym_STAR_PIPE] = ACTIONS(1431), - [anon_sym_align] = ACTIONS(1429), - [anon_sym_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_STAR] = ACTIONS(1429), - [anon_sym_DOT_QMARK] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1451), + [anon_sym_SEMI] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_COLON] = ACTIONS(1451), + [anon_sym_EQ] = ACTIONS(1453), + [anon_sym_else] = ACTIONS(1451), + [anon_sym_or] = ACTIONS(1453), + [anon_sym_and] = ACTIONS(1451), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_RBRACE] = ACTIONS(1451), + [anon_sym_DOT] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1451), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_LBRACK] = ACTIONS(1451), + [anon_sym_RBRACK] = ACTIONS(1451), + [anon_sym_linksection] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1453), + [anon_sym_EQ_GT] = ACTIONS(1451), + [anon_sym_STAR_EQ] = ACTIONS(1451), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1451), + [anon_sym_SLASH_EQ] = ACTIONS(1451), + [anon_sym_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1451), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1451), + [anon_sym_DASH_EQ] = ACTIONS(1451), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_EQ] = ACTIONS(1451), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1451), + [anon_sym_GT_GT_EQ] = ACTIONS(1451), + [anon_sym_AMP_EQ] = ACTIONS(1451), + [anon_sym_CARET_EQ] = ACTIONS(1451), + [anon_sym_PIPE_EQ] = ACTIONS(1451), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1451), + [anon_sym_BANG_EQ] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1453), + [anon_sym_CARET] = ACTIONS(1453), + [anon_sym_orelse] = ACTIONS(1451), + [anon_sym_catch] = ACTIONS(1451), + [anon_sym_LT_LT] = ACTIONS(1453), + [anon_sym_GT_GT] = ACTIONS(1453), + [anon_sym_LT_LT_PIPE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1453), + [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_PLUS_PLUS] = ACTIONS(1451), + [anon_sym_PLUS_PERCENT] = ACTIONS(1453), + [anon_sym_DASH_PERCENT] = ACTIONS(1453), + [anon_sym_PLUS_PIPE] = ACTIONS(1453), + [anon_sym_DASH_PIPE] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1453), + [anon_sym_PERCENT] = ACTIONS(1453), + [anon_sym_STAR_STAR] = ACTIONS(1451), + [anon_sym_STAR_PERCENT] = ACTIONS(1453), + [anon_sym_STAR_PIPE] = ACTIONS(1453), + [anon_sym_align] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_STAR] = ACTIONS(1451), + [anon_sym_DOT_QMARK] = ACTIONS(1451), [sym_line_comment] = ACTIONS(95), }, [797] = { - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_SEMI] = ACTIONS(1433), - [anon_sym_BANG] = ACTIONS(1435), - [anon_sym_COLON] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_else] = ACTIONS(1433), - [anon_sym_or] = ACTIONS(1435), - [anon_sym_and] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_RPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACK] = ACTIONS(1433), - [anon_sym_linksection] = ACTIONS(1433), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_EQ_GT] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_orelse] = ACTIONS(1433), - [anon_sym_catch] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_LT_LT_PIPE] = ACTIONS(1435), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1433), - [anon_sym_PLUS_PERCENT] = ACTIONS(1435), - [anon_sym_DASH_PERCENT] = ACTIONS(1435), - [anon_sym_PLUS_PIPE] = ACTIONS(1435), - [anon_sym_DASH_PIPE] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_STAR_STAR] = ACTIONS(1433), - [anon_sym_STAR_PERCENT] = ACTIONS(1435), - [anon_sym_STAR_PIPE] = ACTIONS(1435), - [anon_sym_align] = ACTIONS(1433), - [anon_sym_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_STAR] = ACTIONS(1433), - [anon_sym_DOT_QMARK] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_COLON] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1455), + [anon_sym_or] = ACTIONS(1457), + [anon_sym_and] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_linksection] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1457), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_STAR_EQ] = ACTIONS(1455), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1455), + [anon_sym_SLASH_EQ] = ACTIONS(1455), + [anon_sym_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1455), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1455), + [anon_sym_DASH_EQ] = ACTIONS(1455), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_EQ] = ACTIONS(1455), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1455), + [anon_sym_GT_GT_EQ] = ACTIONS(1455), + [anon_sym_AMP_EQ] = ACTIONS(1455), + [anon_sym_CARET_EQ] = ACTIONS(1455), + [anon_sym_PIPE_EQ] = ACTIONS(1455), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1457), + [anon_sym_orelse] = ACTIONS(1455), + [anon_sym_catch] = ACTIONS(1455), + [anon_sym_LT_LT] = ACTIONS(1457), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_LT_LT_PIPE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_PLUS_PERCENT] = ACTIONS(1457), + [anon_sym_DASH_PERCENT] = ACTIONS(1457), + [anon_sym_PLUS_PIPE] = ACTIONS(1457), + [anon_sym_DASH_PIPE] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PERCENT] = ACTIONS(1457), + [anon_sym_STAR_STAR] = ACTIONS(1455), + [anon_sym_STAR_PERCENT] = ACTIONS(1457), + [anon_sym_STAR_PIPE] = ACTIONS(1457), + [anon_sym_align] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_STAR] = ACTIONS(1455), + [anon_sym_DOT_QMARK] = ACTIONS(1455), [sym_line_comment] = ACTIONS(95), }, [798] = { - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(538), - [anon_sym_BANG] = ACTIONS(540), - [anon_sym_COLON] = ACTIONS(538), - [anon_sym_EQ] = ACTIONS(540), - [anon_sym_else] = ACTIONS(538), - [anon_sym_or] = ACTIONS(540), - [anon_sym_and] = ACTIONS(538), - [anon_sym_LBRACE] = ACTIONS(538), - [anon_sym_RBRACE] = ACTIONS(538), - [anon_sym_DOT] = ACTIONS(540), - [anon_sym_LPAREN] = ACTIONS(538), - [anon_sym_RPAREN] = ACTIONS(538), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(538), - [anon_sym_linksection] = ACTIONS(538), - [anon_sym_PIPE] = ACTIONS(540), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_EQ_GT] = ACTIONS(538), - [anon_sym_STAR_EQ] = ACTIONS(538), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(538), - [anon_sym_SLASH_EQ] = ACTIONS(538), - [anon_sym_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_EQ] = ACTIONS(538), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(538), - [anon_sym_DASH_EQ] = ACTIONS(538), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(538), - [anon_sym_LT_LT_EQ] = ACTIONS(538), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(538), - [anon_sym_GT_GT_EQ] = ACTIONS(538), - [anon_sym_AMP_EQ] = ACTIONS(538), - [anon_sym_CARET_EQ] = ACTIONS(538), - [anon_sym_PIPE_EQ] = ACTIONS(538), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(538), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(538), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(538), - [anon_sym_EQ_EQ] = ACTIONS(538), - [anon_sym_BANG_EQ] = ACTIONS(538), - [anon_sym_LT] = ACTIONS(540), - [anon_sym_GT] = ACTIONS(540), - [anon_sym_LT_EQ] = ACTIONS(538), - [anon_sym_GT_EQ] = ACTIONS(538), - [anon_sym_AMP] = ACTIONS(540), - [anon_sym_CARET] = ACTIONS(540), - [anon_sym_orelse] = ACTIONS(538), - [anon_sym_catch] = ACTIONS(538), - [anon_sym_LT_LT] = ACTIONS(540), - [anon_sym_GT_GT] = ACTIONS(540), - [anon_sym_LT_LT_PIPE] = ACTIONS(540), - [anon_sym_PLUS] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(540), - [anon_sym_PLUS_PLUS] = ACTIONS(538), - [anon_sym_PLUS_PERCENT] = ACTIONS(540), - [anon_sym_DASH_PERCENT] = ACTIONS(540), - [anon_sym_PLUS_PIPE] = ACTIONS(540), - [anon_sym_DASH_PIPE] = ACTIONS(540), - [anon_sym_PIPE_PIPE] = ACTIONS(538), - [anon_sym_SLASH] = ACTIONS(540), - [anon_sym_PERCENT] = ACTIONS(540), - [anon_sym_STAR_STAR] = ACTIONS(538), - [anon_sym_STAR_PERCENT] = ACTIONS(540), - [anon_sym_STAR_PIPE] = ACTIONS(540), - [anon_sym_align] = ACTIONS(538), - [anon_sym_DOT_DOT] = ACTIONS(538), - [anon_sym_DOT_STAR] = ACTIONS(538), - [anon_sym_DOT_QMARK] = ACTIONS(538), + [anon_sym_COMMA] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_COLON] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_else] = ACTIONS(1459), + [anon_sym_or] = ACTIONS(1461), + [anon_sym_and] = ACTIONS(1459), + [anon_sym_LBRACE] = ACTIONS(1459), + [anon_sym_RBRACE] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1459), + [anon_sym_RPAREN] = ACTIONS(1459), + [anon_sym_LBRACK] = ACTIONS(1459), + [anon_sym_RBRACK] = ACTIONS(1459), + [anon_sym_linksection] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_STAR] = ACTIONS(1461), + [anon_sym_EQ_GT] = ACTIONS(1459), + [anon_sym_STAR_EQ] = ACTIONS(1459), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1459), + [anon_sym_SLASH_EQ] = ACTIONS(1459), + [anon_sym_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1459), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1459), + [anon_sym_DASH_EQ] = ACTIONS(1459), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_EQ] = ACTIONS(1459), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1459), + [anon_sym_GT_GT_EQ] = ACTIONS(1459), + [anon_sym_AMP_EQ] = ACTIONS(1459), + [anon_sym_CARET_EQ] = ACTIONS(1459), + [anon_sym_PIPE_EQ] = ACTIONS(1459), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1461), + [anon_sym_orelse] = ACTIONS(1459), + [anon_sym_catch] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(1461), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_LT_LT_PIPE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1461), + [anon_sym_PLUS_PLUS] = ACTIONS(1459), + [anon_sym_PLUS_PERCENT] = ACTIONS(1461), + [anon_sym_DASH_PERCENT] = ACTIONS(1461), + [anon_sym_PLUS_PIPE] = ACTIONS(1461), + [anon_sym_DASH_PIPE] = ACTIONS(1461), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PERCENT] = ACTIONS(1461), + [anon_sym_STAR_STAR] = ACTIONS(1459), + [anon_sym_STAR_PERCENT] = ACTIONS(1461), + [anon_sym_STAR_PIPE] = ACTIONS(1461), + [anon_sym_align] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_STAR] = ACTIONS(1459), + [anon_sym_DOT_QMARK] = ACTIONS(1459), [sym_line_comment] = ACTIONS(95), }, [799] = { - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_SEMI] = ACTIONS(1437), - [anon_sym_BANG] = ACTIONS(1439), - [anon_sym_COLON] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_else] = ACTIONS(1437), - [anon_sym_or] = ACTIONS(1439), - [anon_sym_and] = ACTIONS(1437), - [anon_sym_LBRACE] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_RPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_RBRACK] = ACTIONS(1437), - [anon_sym_linksection] = ACTIONS(1437), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_EQ_GT] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_orelse] = ACTIONS(1437), - [anon_sym_catch] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_LT_LT_PIPE] = ACTIONS(1439), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_PLUS_PLUS] = ACTIONS(1437), - [anon_sym_PLUS_PERCENT] = ACTIONS(1439), - [anon_sym_DASH_PERCENT] = ACTIONS(1439), - [anon_sym_PLUS_PIPE] = ACTIONS(1439), - [anon_sym_DASH_PIPE] = ACTIONS(1439), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_STAR_STAR] = ACTIONS(1437), - [anon_sym_STAR_PERCENT] = ACTIONS(1439), - [anon_sym_STAR_PIPE] = ACTIONS(1439), - [anon_sym_align] = ACTIONS(1437), - [anon_sym_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_STAR] = ACTIONS(1437), - [anon_sym_DOT_QMARK] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1463), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_COLON] = ACTIONS(1463), + [anon_sym_EQ] = ACTIONS(1465), + [anon_sym_else] = ACTIONS(1463), + [anon_sym_or] = ACTIONS(1465), + [anon_sym_and] = ACTIONS(1463), + [anon_sym_LBRACE] = ACTIONS(1463), + [anon_sym_RBRACE] = ACTIONS(1463), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1463), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1463), + [anon_sym_linksection] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1465), + [anon_sym_STAR] = ACTIONS(1465), + [anon_sym_EQ_GT] = ACTIONS(1463), + [anon_sym_STAR_EQ] = ACTIONS(1463), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1463), + [anon_sym_SLASH_EQ] = ACTIONS(1463), + [anon_sym_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_PLUS_EQ] = ACTIONS(1463), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1463), + [anon_sym_DASH_EQ] = ACTIONS(1463), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_EQ] = ACTIONS(1463), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1463), + [anon_sym_GT_GT_EQ] = ACTIONS(1463), + [anon_sym_AMP_EQ] = ACTIONS(1463), + [anon_sym_CARET_EQ] = ACTIONS(1463), + [anon_sym_PIPE_EQ] = ACTIONS(1463), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1463), + [anon_sym_EQ_EQ] = ACTIONS(1463), + [anon_sym_BANG_EQ] = ACTIONS(1463), + [anon_sym_LT] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1465), + [anon_sym_CARET] = ACTIONS(1465), + [anon_sym_orelse] = ACTIONS(1463), + [anon_sym_catch] = ACTIONS(1463), + [anon_sym_LT_LT] = ACTIONS(1465), + [anon_sym_GT_GT] = ACTIONS(1465), + [anon_sym_LT_LT_PIPE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1465), + [anon_sym_DASH] = ACTIONS(1465), + [anon_sym_PLUS_PLUS] = ACTIONS(1463), + [anon_sym_PLUS_PERCENT] = ACTIONS(1465), + [anon_sym_DASH_PERCENT] = ACTIONS(1465), + [anon_sym_PLUS_PIPE] = ACTIONS(1465), + [anon_sym_DASH_PIPE] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1465), + [anon_sym_STAR_STAR] = ACTIONS(1463), + [anon_sym_STAR_PERCENT] = ACTIONS(1465), + [anon_sym_STAR_PIPE] = ACTIONS(1465), + [anon_sym_align] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_STAR] = ACTIONS(1463), + [anon_sym_DOT_QMARK] = ACTIONS(1463), [sym_line_comment] = ACTIONS(95), }, [800] = { - [anon_sym_COMMA] = ACTIONS(1441), - [anon_sym_SEMI] = ACTIONS(1441), - [anon_sym_BANG] = ACTIONS(1443), - [anon_sym_COLON] = ACTIONS(1441), - [anon_sym_EQ] = ACTIONS(1443), - [anon_sym_else] = ACTIONS(1441), - [anon_sym_or] = ACTIONS(1443), - [anon_sym_and] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_linksection] = ACTIONS(1441), - [anon_sym_PIPE] = ACTIONS(1443), - [anon_sym_STAR] = ACTIONS(1443), - [anon_sym_EQ_GT] = ACTIONS(1441), - [anon_sym_STAR_EQ] = ACTIONS(1441), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1441), - [anon_sym_SLASH_EQ] = ACTIONS(1441), - [anon_sym_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_PLUS_EQ] = ACTIONS(1441), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1441), - [anon_sym_DASH_EQ] = ACTIONS(1441), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_EQ] = ACTIONS(1441), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1441), - [anon_sym_GT_GT_EQ] = ACTIONS(1441), - [anon_sym_AMP_EQ] = ACTIONS(1441), - [anon_sym_CARET_EQ] = ACTIONS(1441), - [anon_sym_PIPE_EQ] = ACTIONS(1441), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1441), - [anon_sym_EQ_EQ] = ACTIONS(1441), - [anon_sym_BANG_EQ] = ACTIONS(1441), - [anon_sym_LT] = ACTIONS(1443), - [anon_sym_GT] = ACTIONS(1443), - [anon_sym_LT_EQ] = ACTIONS(1441), - [anon_sym_GT_EQ] = ACTIONS(1441), - [anon_sym_AMP] = ACTIONS(1443), - [anon_sym_CARET] = ACTIONS(1443), - [anon_sym_orelse] = ACTIONS(1441), - [anon_sym_catch] = ACTIONS(1441), - [anon_sym_LT_LT] = ACTIONS(1443), - [anon_sym_GT_GT] = ACTIONS(1443), - [anon_sym_LT_LT_PIPE] = ACTIONS(1443), - [anon_sym_PLUS] = ACTIONS(1443), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_PLUS_PLUS] = ACTIONS(1441), - [anon_sym_PLUS_PERCENT] = ACTIONS(1443), - [anon_sym_DASH_PERCENT] = ACTIONS(1443), - [anon_sym_PLUS_PIPE] = ACTIONS(1443), - [anon_sym_DASH_PIPE] = ACTIONS(1443), - [anon_sym_PIPE_PIPE] = ACTIONS(1441), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym_PERCENT] = ACTIONS(1443), - [anon_sym_STAR_STAR] = ACTIONS(1441), - [anon_sym_STAR_PERCENT] = ACTIONS(1443), - [anon_sym_STAR_PIPE] = ACTIONS(1443), - [anon_sym_align] = ACTIONS(1441), - [anon_sym_DOT_DOT] = ACTIONS(1441), - [anon_sym_DOT_STAR] = ACTIONS(1441), - [anon_sym_DOT_QMARK] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_COLON] = ACTIONS(1467), + [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1467), + [anon_sym_or] = ACTIONS(1469), + [anon_sym_and] = ACTIONS(1467), + [anon_sym_LBRACE] = ACTIONS(1467), + [anon_sym_RBRACE] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1467), + [anon_sym_RPAREN] = ACTIONS(1467), + [anon_sym_LBRACK] = ACTIONS(1467), + [anon_sym_RBRACK] = ACTIONS(1467), + [anon_sym_linksection] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1469), + [anon_sym_EQ_GT] = ACTIONS(1467), + [anon_sym_STAR_EQ] = ACTIONS(1467), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1467), + [anon_sym_SLASH_EQ] = ACTIONS(1467), + [anon_sym_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1467), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1467), + [anon_sym_DASH_EQ] = ACTIONS(1467), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1467), + [anon_sym_LT_LT_EQ] = ACTIONS(1467), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1467), + [anon_sym_GT_GT_EQ] = ACTIONS(1467), + [anon_sym_AMP_EQ] = ACTIONS(1467), + [anon_sym_CARET_EQ] = ACTIONS(1467), + [anon_sym_PIPE_EQ] = ACTIONS(1467), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1467), + [anon_sym_BANG_EQ] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1469), + [anon_sym_orelse] = ACTIONS(1467), + [anon_sym_catch] = ACTIONS(1467), + [anon_sym_LT_LT] = ACTIONS(1469), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_LT_LT_PIPE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1467), + [anon_sym_PLUS_PERCENT] = ACTIONS(1469), + [anon_sym_DASH_PERCENT] = ACTIONS(1469), + [anon_sym_PLUS_PIPE] = ACTIONS(1469), + [anon_sym_DASH_PIPE] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PERCENT] = ACTIONS(1469), + [anon_sym_STAR_STAR] = ACTIONS(1467), + [anon_sym_STAR_PERCENT] = ACTIONS(1469), + [anon_sym_STAR_PIPE] = ACTIONS(1469), + [anon_sym_align] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_STAR] = ACTIONS(1467), + [anon_sym_DOT_QMARK] = ACTIONS(1467), [sym_line_comment] = ACTIONS(95), }, [801] = { - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_SEMI] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1447), - [anon_sym_COLON] = ACTIONS(1445), - [anon_sym_EQ] = ACTIONS(1447), - [anon_sym_else] = ACTIONS(1445), - [anon_sym_or] = ACTIONS(1447), - [anon_sym_and] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(1445), - [anon_sym_RBRACE] = ACTIONS(1445), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1445), - [anon_sym_RPAREN] = ACTIONS(1445), - [anon_sym_LBRACK] = ACTIONS(1445), - [anon_sym_RBRACK] = ACTIONS(1445), - [anon_sym_linksection] = ACTIONS(1445), - [anon_sym_PIPE] = ACTIONS(1447), - [anon_sym_STAR] = ACTIONS(1447), - [anon_sym_EQ_GT] = ACTIONS(1445), - [anon_sym_STAR_EQ] = ACTIONS(1445), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1445), - [anon_sym_SLASH_EQ] = ACTIONS(1445), - [anon_sym_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_EQ] = ACTIONS(1445), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1445), - [anon_sym_DASH_EQ] = ACTIONS(1445), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_EQ] = ACTIONS(1445), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1445), - [anon_sym_GT_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP_EQ] = ACTIONS(1445), - [anon_sym_CARET_EQ] = ACTIONS(1445), - [anon_sym_PIPE_EQ] = ACTIONS(1445), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1445), - [anon_sym_EQ_EQ] = ACTIONS(1445), - [anon_sym_BANG_EQ] = ACTIONS(1445), - [anon_sym_LT] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1445), - [anon_sym_GT_EQ] = ACTIONS(1445), - [anon_sym_AMP] = ACTIONS(1447), - [anon_sym_CARET] = ACTIONS(1447), - [anon_sym_orelse] = ACTIONS(1445), - [anon_sym_catch] = ACTIONS(1445), - [anon_sym_LT_LT] = ACTIONS(1447), - [anon_sym_GT_GT] = ACTIONS(1447), - [anon_sym_LT_LT_PIPE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1447), - [anon_sym_PLUS_PLUS] = ACTIONS(1445), - [anon_sym_PLUS_PERCENT] = ACTIONS(1447), - [anon_sym_DASH_PERCENT] = ACTIONS(1447), - [anon_sym_PLUS_PIPE] = ACTIONS(1447), - [anon_sym_DASH_PIPE] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1445), - [anon_sym_SLASH] = ACTIONS(1447), - [anon_sym_PERCENT] = ACTIONS(1447), - [anon_sym_STAR_STAR] = ACTIONS(1445), - [anon_sym_STAR_PERCENT] = ACTIONS(1447), - [anon_sym_STAR_PIPE] = ACTIONS(1447), - [anon_sym_align] = ACTIONS(1445), - [anon_sym_DOT_DOT] = ACTIONS(1445), - [anon_sym_DOT_STAR] = ACTIONS(1445), - [anon_sym_DOT_QMARK] = ACTIONS(1445), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1473), + [anon_sym_COLON] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1473), + [anon_sym_else] = ACTIONS(1471), + [anon_sym_or] = ACTIONS(1473), + [anon_sym_and] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACK] = ACTIONS(1471), + [anon_sym_linksection] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1473), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_STAR_EQ] = ACTIONS(1471), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1471), + [anon_sym_SLASH_EQ] = ACTIONS(1471), + [anon_sym_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1471), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1471), + [anon_sym_DASH_EQ] = ACTIONS(1471), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_EQ] = ACTIONS(1471), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1471), + [anon_sym_GT_GT_EQ] = ACTIONS(1471), + [anon_sym_AMP_EQ] = ACTIONS(1471), + [anon_sym_CARET_EQ] = ACTIONS(1471), + [anon_sym_PIPE_EQ] = ACTIONS(1471), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1473), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_orelse] = ACTIONS(1471), + [anon_sym_catch] = ACTIONS(1471), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1473), + [anon_sym_LT_LT_PIPE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1473), + [anon_sym_DASH] = ACTIONS(1473), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_PLUS_PERCENT] = ACTIONS(1473), + [anon_sym_DASH_PERCENT] = ACTIONS(1473), + [anon_sym_PLUS_PIPE] = ACTIONS(1473), + [anon_sym_DASH_PIPE] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1473), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_STAR_STAR] = ACTIONS(1471), + [anon_sym_STAR_PERCENT] = ACTIONS(1473), + [anon_sym_STAR_PIPE] = ACTIONS(1473), + [anon_sym_align] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_STAR] = ACTIONS(1471), + [anon_sym_DOT_QMARK] = ACTIONS(1471), [sym_line_comment] = ACTIONS(95), }, [802] = { - [anon_sym_COMMA] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1451), - [anon_sym_COLON] = ACTIONS(1449), - [anon_sym_EQ] = ACTIONS(1451), - [anon_sym_else] = ACTIONS(1449), - [anon_sym_or] = ACTIONS(1451), - [anon_sym_and] = ACTIONS(1449), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_RBRACE] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1449), - [anon_sym_RPAREN] = ACTIONS(1449), - [anon_sym_LBRACK] = ACTIONS(1449), - [anon_sym_RBRACK] = ACTIONS(1449), - [anon_sym_linksection] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1451), - [anon_sym_STAR] = ACTIONS(1451), - [anon_sym_EQ_GT] = ACTIONS(1449), - [anon_sym_STAR_EQ] = ACTIONS(1449), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1449), - [anon_sym_SLASH_EQ] = ACTIONS(1449), - [anon_sym_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1449), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1449), - [anon_sym_DASH_EQ] = ACTIONS(1449), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_EQ] = ACTIONS(1449), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1449), - [anon_sym_GT_GT_EQ] = ACTIONS(1449), - [anon_sym_AMP_EQ] = ACTIONS(1449), - [anon_sym_CARET_EQ] = ACTIONS(1449), - [anon_sym_PIPE_EQ] = ACTIONS(1449), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1449), - [anon_sym_BANG_EQ] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1451), - [anon_sym_CARET] = ACTIONS(1451), - [anon_sym_orelse] = ACTIONS(1449), - [anon_sym_catch] = ACTIONS(1449), - [anon_sym_LT_LT] = ACTIONS(1451), - [anon_sym_GT_GT] = ACTIONS(1451), - [anon_sym_LT_LT_PIPE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1451), - [anon_sym_DASH] = ACTIONS(1451), - [anon_sym_PLUS_PLUS] = ACTIONS(1449), - [anon_sym_PLUS_PERCENT] = ACTIONS(1451), - [anon_sym_DASH_PERCENT] = ACTIONS(1451), - [anon_sym_PLUS_PIPE] = ACTIONS(1451), - [anon_sym_DASH_PIPE] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1451), - [anon_sym_PERCENT] = ACTIONS(1451), - [anon_sym_STAR_STAR] = ACTIONS(1449), - [anon_sym_STAR_PERCENT] = ACTIONS(1451), - [anon_sym_STAR_PIPE] = ACTIONS(1451), - [anon_sym_align] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_STAR] = ACTIONS(1449), - [anon_sym_DOT_QMARK] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1477), + [anon_sym_COLON] = ACTIONS(1475), + [anon_sym_EQ] = ACTIONS(1477), + [anon_sym_else] = ACTIONS(1475), + [anon_sym_or] = ACTIONS(1477), + [anon_sym_and] = ACTIONS(1475), + [anon_sym_LBRACE] = ACTIONS(1475), + [anon_sym_RBRACE] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1475), + [anon_sym_RPAREN] = ACTIONS(1475), + [anon_sym_LBRACK] = ACTIONS(1475), + [anon_sym_RBRACK] = ACTIONS(1475), + [anon_sym_linksection] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1477), + [anon_sym_EQ_GT] = ACTIONS(1475), + [anon_sym_STAR_EQ] = ACTIONS(1475), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1475), + [anon_sym_SLASH_EQ] = ACTIONS(1475), + [anon_sym_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1475), + [anon_sym_DASH_EQ] = ACTIONS(1475), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_EQ] = ACTIONS(1475), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1475), + [anon_sym_GT_GT_EQ] = ACTIONS(1475), + [anon_sym_AMP_EQ] = ACTIONS(1475), + [anon_sym_CARET_EQ] = ACTIONS(1475), + [anon_sym_PIPE_EQ] = ACTIONS(1475), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1475), + [anon_sym_BANG_EQ] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1477), + [anon_sym_CARET] = ACTIONS(1477), + [anon_sym_orelse] = ACTIONS(1475), + [anon_sym_catch] = ACTIONS(1475), + [anon_sym_LT_LT] = ACTIONS(1477), + [anon_sym_GT_GT] = ACTIONS(1477), + [anon_sym_LT_LT_PIPE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1477), + [anon_sym_DASH] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1475), + [anon_sym_PLUS_PERCENT] = ACTIONS(1477), + [anon_sym_DASH_PERCENT] = ACTIONS(1477), + [anon_sym_PLUS_PIPE] = ACTIONS(1477), + [anon_sym_DASH_PIPE] = ACTIONS(1477), + [anon_sym_PIPE_PIPE] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1477), + [anon_sym_PERCENT] = ACTIONS(1477), + [anon_sym_STAR_STAR] = ACTIONS(1475), + [anon_sym_STAR_PERCENT] = ACTIONS(1477), + [anon_sym_STAR_PIPE] = ACTIONS(1477), + [anon_sym_align] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_STAR] = ACTIONS(1475), + [anon_sym_DOT_QMARK] = ACTIONS(1475), [sym_line_comment] = ACTIONS(95), }, [803] = { - [anon_sym_COMMA] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1455), - [anon_sym_COLON] = ACTIONS(1453), - [anon_sym_EQ] = ACTIONS(1455), - [anon_sym_else] = ACTIONS(1453), - [anon_sym_or] = ACTIONS(1455), - [anon_sym_and] = ACTIONS(1453), - [anon_sym_LBRACE] = ACTIONS(1453), - [anon_sym_RBRACE] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1453), - [anon_sym_RPAREN] = ACTIONS(1453), - [anon_sym_LBRACK] = ACTIONS(1453), - [anon_sym_RBRACK] = ACTIONS(1453), - [anon_sym_linksection] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1455), - [anon_sym_STAR] = ACTIONS(1455), - [anon_sym_EQ_GT] = ACTIONS(1453), - [anon_sym_STAR_EQ] = ACTIONS(1453), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1453), - [anon_sym_SLASH_EQ] = ACTIONS(1453), - [anon_sym_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1453), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1453), - [anon_sym_DASH_EQ] = ACTIONS(1453), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_EQ] = ACTIONS(1453), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1453), - [anon_sym_GT_GT_EQ] = ACTIONS(1453), - [anon_sym_AMP_EQ] = ACTIONS(1453), - [anon_sym_CARET_EQ] = ACTIONS(1453), - [anon_sym_PIPE_EQ] = ACTIONS(1453), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1453), - [anon_sym_BANG_EQ] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1455), - [anon_sym_CARET] = ACTIONS(1455), - [anon_sym_orelse] = ACTIONS(1453), - [anon_sym_catch] = ACTIONS(1453), - [anon_sym_LT_LT] = ACTIONS(1455), - [anon_sym_GT_GT] = ACTIONS(1455), - [anon_sym_LT_LT_PIPE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1455), - [anon_sym_DASH] = ACTIONS(1455), - [anon_sym_PLUS_PLUS] = ACTIONS(1453), - [anon_sym_PLUS_PERCENT] = ACTIONS(1455), - [anon_sym_DASH_PERCENT] = ACTIONS(1455), - [anon_sym_PLUS_PIPE] = ACTIONS(1455), - [anon_sym_DASH_PIPE] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1455), - [anon_sym_PERCENT] = ACTIONS(1455), - [anon_sym_STAR_STAR] = ACTIONS(1453), - [anon_sym_STAR_PERCENT] = ACTIONS(1455), - [anon_sym_STAR_PIPE] = ACTIONS(1455), - [anon_sym_align] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_STAR] = ACTIONS(1453), - [anon_sym_DOT_QMARK] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_COLON] = ACTIONS(1479), + [anon_sym_EQ] = ACTIONS(1481), + [anon_sym_else] = ACTIONS(1479), + [anon_sym_or] = ACTIONS(1481), + [anon_sym_and] = ACTIONS(1479), + [anon_sym_LBRACE] = ACTIONS(1479), + [anon_sym_RBRACE] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1479), + [anon_sym_RPAREN] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1479), + [anon_sym_RBRACK] = ACTIONS(1479), + [anon_sym_linksection] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1481), + [anon_sym_STAR] = ACTIONS(1481), + [anon_sym_EQ_GT] = ACTIONS(1479), + [anon_sym_STAR_EQ] = ACTIONS(1479), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1479), + [anon_sym_SLASH_EQ] = ACTIONS(1479), + [anon_sym_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1479), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1479), + [anon_sym_DASH_EQ] = ACTIONS(1479), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1479), + [anon_sym_LT_LT_EQ] = ACTIONS(1479), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1479), + [anon_sym_GT_GT_EQ] = ACTIONS(1479), + [anon_sym_AMP_EQ] = ACTIONS(1479), + [anon_sym_CARET_EQ] = ACTIONS(1479), + [anon_sym_PIPE_EQ] = ACTIONS(1479), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1479), + [anon_sym_BANG_EQ] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1481), + [anon_sym_GT] = ACTIONS(1481), + [anon_sym_LT_EQ] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1481), + [anon_sym_CARET] = ACTIONS(1481), + [anon_sym_orelse] = ACTIONS(1479), + [anon_sym_catch] = ACTIONS(1479), + [anon_sym_LT_LT] = ACTIONS(1481), + [anon_sym_GT_GT] = ACTIONS(1481), + [anon_sym_LT_LT_PIPE] = ACTIONS(1481), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1479), + [anon_sym_PLUS_PERCENT] = ACTIONS(1481), + [anon_sym_DASH_PERCENT] = ACTIONS(1481), + [anon_sym_PLUS_PIPE] = ACTIONS(1481), + [anon_sym_DASH_PIPE] = ACTIONS(1481), + [anon_sym_PIPE_PIPE] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1481), + [anon_sym_PERCENT] = ACTIONS(1481), + [anon_sym_STAR_STAR] = ACTIONS(1479), + [anon_sym_STAR_PERCENT] = ACTIONS(1481), + [anon_sym_STAR_PIPE] = ACTIONS(1481), + [anon_sym_align] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_STAR] = ACTIONS(1479), + [anon_sym_DOT_QMARK] = ACTIONS(1479), [sym_line_comment] = ACTIONS(95), }, [804] = { - [anon_sym_COMMA] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1459), - [anon_sym_COLON] = ACTIONS(1457), - [anon_sym_EQ] = ACTIONS(1459), - [anon_sym_else] = ACTIONS(1457), - [anon_sym_or] = ACTIONS(1459), - [anon_sym_and] = ACTIONS(1457), - [anon_sym_LBRACE] = ACTIONS(1457), - [anon_sym_RBRACE] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1457), - [anon_sym_RPAREN] = ACTIONS(1457), - [anon_sym_LBRACK] = ACTIONS(1457), - [anon_sym_RBRACK] = ACTIONS(1457), - [anon_sym_linksection] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1459), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_EQ_GT] = ACTIONS(1457), - [anon_sym_STAR_EQ] = ACTIONS(1457), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1457), - [anon_sym_SLASH_EQ] = ACTIONS(1457), - [anon_sym_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1457), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1457), - [anon_sym_DASH_EQ] = ACTIONS(1457), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_EQ] = ACTIONS(1457), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1457), - [anon_sym_GT_GT_EQ] = ACTIONS(1457), - [anon_sym_AMP_EQ] = ACTIONS(1457), - [anon_sym_CARET_EQ] = ACTIONS(1457), - [anon_sym_PIPE_EQ] = ACTIONS(1457), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1457), - [anon_sym_BANG_EQ] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1459), - [anon_sym_CARET] = ACTIONS(1459), - [anon_sym_orelse] = ACTIONS(1457), - [anon_sym_catch] = ACTIONS(1457), - [anon_sym_LT_LT] = ACTIONS(1459), - [anon_sym_GT_GT] = ACTIONS(1459), - [anon_sym_LT_LT_PIPE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [anon_sym_PLUS_PLUS] = ACTIONS(1457), - [anon_sym_PLUS_PERCENT] = ACTIONS(1459), - [anon_sym_DASH_PERCENT] = ACTIONS(1459), - [anon_sym_PLUS_PIPE] = ACTIONS(1459), - [anon_sym_DASH_PIPE] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1459), - [anon_sym_PERCENT] = ACTIONS(1459), - [anon_sym_STAR_STAR] = ACTIONS(1457), - [anon_sym_STAR_PERCENT] = ACTIONS(1459), - [anon_sym_STAR_PIPE] = ACTIONS(1459), - [anon_sym_align] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_STAR] = ACTIONS(1457), - [anon_sym_DOT_QMARK] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1483), + [anon_sym_SEMI] = ACTIONS(1483), + [anon_sym_BANG] = ACTIONS(1485), + [anon_sym_COLON] = ACTIONS(1483), + [anon_sym_EQ] = ACTIONS(1485), + [anon_sym_else] = ACTIONS(1483), + [anon_sym_or] = ACTIONS(1485), + [anon_sym_and] = ACTIONS(1483), + [anon_sym_LBRACE] = ACTIONS(1483), + [anon_sym_RBRACE] = ACTIONS(1483), + [anon_sym_DOT] = ACTIONS(1485), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1483), + [anon_sym_LBRACK] = ACTIONS(1483), + [anon_sym_RBRACK] = ACTIONS(1483), + [anon_sym_linksection] = ACTIONS(1483), + [anon_sym_PIPE] = ACTIONS(1485), + [anon_sym_STAR] = ACTIONS(1485), + [anon_sym_EQ_GT] = ACTIONS(1483), + [anon_sym_STAR_EQ] = ACTIONS(1483), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1483), + [anon_sym_SLASH_EQ] = ACTIONS(1483), + [anon_sym_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_PLUS_EQ] = ACTIONS(1483), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1483), + [anon_sym_DASH_EQ] = ACTIONS(1483), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_EQ] = ACTIONS(1483), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1483), + [anon_sym_GT_GT_EQ] = ACTIONS(1483), + [anon_sym_AMP_EQ] = ACTIONS(1483), + [anon_sym_CARET_EQ] = ACTIONS(1483), + [anon_sym_PIPE_EQ] = ACTIONS(1483), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1483), + [anon_sym_EQ_EQ] = ACTIONS(1483), + [anon_sym_BANG_EQ] = ACTIONS(1483), + [anon_sym_LT] = ACTIONS(1485), + [anon_sym_GT] = ACTIONS(1485), + [anon_sym_LT_EQ] = ACTIONS(1483), + [anon_sym_GT_EQ] = ACTIONS(1483), + [anon_sym_AMP] = ACTIONS(1485), + [anon_sym_CARET] = ACTIONS(1485), + [anon_sym_orelse] = ACTIONS(1483), + [anon_sym_catch] = ACTIONS(1483), + [anon_sym_LT_LT] = ACTIONS(1485), + [anon_sym_GT_GT] = ACTIONS(1485), + [anon_sym_LT_LT_PIPE] = ACTIONS(1485), + [anon_sym_PLUS] = ACTIONS(1485), + [anon_sym_DASH] = ACTIONS(1485), + [anon_sym_PLUS_PLUS] = ACTIONS(1483), + [anon_sym_PLUS_PERCENT] = ACTIONS(1485), + [anon_sym_DASH_PERCENT] = ACTIONS(1485), + [anon_sym_PLUS_PIPE] = ACTIONS(1485), + [anon_sym_DASH_PIPE] = ACTIONS(1485), + [anon_sym_PIPE_PIPE] = ACTIONS(1483), + [anon_sym_SLASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1485), + [anon_sym_STAR_STAR] = ACTIONS(1483), + [anon_sym_STAR_PERCENT] = ACTIONS(1485), + [anon_sym_STAR_PIPE] = ACTIONS(1485), + [anon_sym_align] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1483), + [anon_sym_DOT_STAR] = ACTIONS(1483), + [anon_sym_DOT_QMARK] = ACTIONS(1483), [sym_line_comment] = ACTIONS(95), }, [805] = { - [anon_sym_COMMA] = ACTIONS(548), - [anon_sym_SEMI] = ACTIONS(548), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_COLON] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(546), - [anon_sym_else] = ACTIONS(548), - [anon_sym_or] = ACTIONS(546), - [anon_sym_and] = ACTIONS(548), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(548), - [anon_sym_DOT] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(548), - [anon_sym_RBRACK] = ACTIONS(548), - [anon_sym_linksection] = ACTIONS(548), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_EQ_GT] = ACTIONS(548), - [anon_sym_STAR_EQ] = ACTIONS(548), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(548), - [anon_sym_SLASH_EQ] = ACTIONS(548), - [anon_sym_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_EQ] = ACTIONS(548), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(548), - [anon_sym_DASH_EQ] = ACTIONS(548), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(548), - [anon_sym_LT_LT_EQ] = ACTIONS(548), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(548), - [anon_sym_GT_GT_EQ] = ACTIONS(548), - [anon_sym_AMP_EQ] = ACTIONS(548), - [anon_sym_CARET_EQ] = ACTIONS(548), - [anon_sym_PIPE_EQ] = ACTIONS(548), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(548), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(548), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(548), - [anon_sym_EQ_EQ] = ACTIONS(548), - [anon_sym_BANG_EQ] = ACTIONS(548), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_GT] = ACTIONS(546), - [anon_sym_LT_EQ] = ACTIONS(548), - [anon_sym_GT_EQ] = ACTIONS(548), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_CARET] = ACTIONS(546), - [anon_sym_orelse] = ACTIONS(548), - [anon_sym_catch] = ACTIONS(548), - [anon_sym_LT_LT] = ACTIONS(546), - [anon_sym_GT_GT] = ACTIONS(546), - [anon_sym_LT_LT_PIPE] = ACTIONS(546), - [anon_sym_PLUS] = ACTIONS(546), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_PLUS_PLUS] = ACTIONS(548), - [anon_sym_PLUS_PERCENT] = ACTIONS(546), - [anon_sym_DASH_PERCENT] = ACTIONS(546), - [anon_sym_PLUS_PIPE] = ACTIONS(546), - [anon_sym_DASH_PIPE] = ACTIONS(546), - [anon_sym_PIPE_PIPE] = ACTIONS(548), - [anon_sym_SLASH] = ACTIONS(546), - [anon_sym_PERCENT] = ACTIONS(546), - [anon_sym_STAR_STAR] = ACTIONS(548), - [anon_sym_STAR_PERCENT] = ACTIONS(546), - [anon_sym_STAR_PIPE] = ACTIONS(546), - [anon_sym_align] = ACTIONS(548), - [anon_sym_DOT_DOT] = ACTIONS(548), - [anon_sym_DOT_STAR] = ACTIONS(548), - [anon_sym_DOT_QMARK] = ACTIONS(548), + [anon_sym_COMMA] = ACTIONS(1487), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_BANG] = ACTIONS(1489), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_EQ] = ACTIONS(1489), + [anon_sym_else] = ACTIONS(1487), + [anon_sym_or] = ACTIONS(1489), + [anon_sym_and] = ACTIONS(1487), + [anon_sym_LBRACE] = ACTIONS(1487), + [anon_sym_RBRACE] = ACTIONS(1487), + [anon_sym_DOT] = ACTIONS(1489), + [anon_sym_LPAREN] = ACTIONS(1487), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_LBRACK] = ACTIONS(1487), + [anon_sym_RBRACK] = ACTIONS(1487), + [anon_sym_linksection] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1489), + [anon_sym_STAR] = ACTIONS(1489), + [anon_sym_EQ_GT] = ACTIONS(1487), + [anon_sym_STAR_EQ] = ACTIONS(1487), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1487), + [anon_sym_SLASH_EQ] = ACTIONS(1487), + [anon_sym_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_PLUS_EQ] = ACTIONS(1487), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1487), + [anon_sym_DASH_EQ] = ACTIONS(1487), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_EQ] = ACTIONS(1487), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1487), + [anon_sym_GT_GT_EQ] = ACTIONS(1487), + [anon_sym_AMP_EQ] = ACTIONS(1487), + [anon_sym_CARET_EQ] = ACTIONS(1487), + [anon_sym_PIPE_EQ] = ACTIONS(1487), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1487), + [anon_sym_EQ_EQ] = ACTIONS(1487), + [anon_sym_BANG_EQ] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1489), + [anon_sym_GT] = ACTIONS(1489), + [anon_sym_LT_EQ] = ACTIONS(1487), + [anon_sym_GT_EQ] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1489), + [anon_sym_CARET] = ACTIONS(1489), + [anon_sym_orelse] = ACTIONS(1487), + [anon_sym_catch] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1489), + [anon_sym_GT_GT] = ACTIONS(1489), + [anon_sym_LT_LT_PIPE] = ACTIONS(1489), + [anon_sym_PLUS] = ACTIONS(1489), + [anon_sym_DASH] = ACTIONS(1489), + [anon_sym_PLUS_PLUS] = ACTIONS(1487), + [anon_sym_PLUS_PERCENT] = ACTIONS(1489), + [anon_sym_DASH_PERCENT] = ACTIONS(1489), + [anon_sym_PLUS_PIPE] = ACTIONS(1489), + [anon_sym_DASH_PIPE] = ACTIONS(1489), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_SLASH] = ACTIONS(1489), + [anon_sym_PERCENT] = ACTIONS(1489), + [anon_sym_STAR_STAR] = ACTIONS(1487), + [anon_sym_STAR_PERCENT] = ACTIONS(1489), + [anon_sym_STAR_PIPE] = ACTIONS(1489), + [anon_sym_align] = ACTIONS(1487), + [anon_sym_DOT_DOT] = ACTIONS(1487), + [anon_sym_DOT_STAR] = ACTIONS(1487), + [anon_sym_DOT_QMARK] = ACTIONS(1487), [sym_line_comment] = ACTIONS(95), }, [806] = { - [anon_sym_COMMA] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_COLON] = ACTIONS(1461), - [anon_sym_EQ] = ACTIONS(1463), - [anon_sym_else] = ACTIONS(1461), - [anon_sym_or] = ACTIONS(1463), - [anon_sym_and] = ACTIONS(1461), - [anon_sym_LBRACE] = ACTIONS(1461), - [anon_sym_RBRACE] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1461), - [anon_sym_RPAREN] = ACTIONS(1461), - [anon_sym_LBRACK] = ACTIONS(1461), - [anon_sym_RBRACK] = ACTIONS(1461), - [anon_sym_linksection] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_EQ_GT] = ACTIONS(1461), - [anon_sym_STAR_EQ] = ACTIONS(1461), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1461), - [anon_sym_SLASH_EQ] = ACTIONS(1461), - [anon_sym_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1461), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1461), - [anon_sym_DASH_EQ] = ACTIONS(1461), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_EQ] = ACTIONS(1461), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1461), - [anon_sym_GT_GT_EQ] = ACTIONS(1461), - [anon_sym_AMP_EQ] = ACTIONS(1461), - [anon_sym_CARET_EQ] = ACTIONS(1461), - [anon_sym_PIPE_EQ] = ACTIONS(1461), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ] = ACTIONS(1461), - [anon_sym_BANG_EQ] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_GT] = ACTIONS(1463), - [anon_sym_LT_EQ] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_CARET] = ACTIONS(1463), - [anon_sym_orelse] = ACTIONS(1461), - [anon_sym_catch] = ACTIONS(1461), - [anon_sym_LT_LT] = ACTIONS(1463), - [anon_sym_GT_GT] = ACTIONS(1463), - [anon_sym_LT_LT_PIPE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1463), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_PLUS_PLUS] = ACTIONS(1461), - [anon_sym_PLUS_PERCENT] = ACTIONS(1463), - [anon_sym_DASH_PERCENT] = ACTIONS(1463), - [anon_sym_PLUS_PIPE] = ACTIONS(1463), - [anon_sym_DASH_PIPE] = ACTIONS(1463), - [anon_sym_PIPE_PIPE] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1463), - [anon_sym_PERCENT] = ACTIONS(1463), - [anon_sym_STAR_STAR] = ACTIONS(1461), - [anon_sym_STAR_PERCENT] = ACTIONS(1463), - [anon_sym_STAR_PIPE] = ACTIONS(1463), - [anon_sym_align] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_STAR] = ACTIONS(1461), - [anon_sym_DOT_QMARK] = ACTIONS(1461), + [anon_sym_COMMA] = ACTIONS(1491), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_BANG] = ACTIONS(1493), + [anon_sym_COLON] = ACTIONS(1491), + [anon_sym_EQ] = ACTIONS(1493), + [anon_sym_else] = ACTIONS(1491), + [anon_sym_or] = ACTIONS(1493), + [anon_sym_and] = ACTIONS(1491), + [anon_sym_LBRACE] = ACTIONS(1491), + [anon_sym_RBRACE] = ACTIONS(1491), + [anon_sym_DOT] = ACTIONS(1493), + [anon_sym_LPAREN] = ACTIONS(1491), + [anon_sym_RPAREN] = ACTIONS(1491), + [anon_sym_LBRACK] = ACTIONS(1491), + [anon_sym_RBRACK] = ACTIONS(1491), + [anon_sym_linksection] = ACTIONS(1491), + [anon_sym_PIPE] = ACTIONS(1493), + [anon_sym_STAR] = ACTIONS(1493), + [anon_sym_EQ_GT] = ACTIONS(1491), + [anon_sym_STAR_EQ] = ACTIONS(1491), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1491), + [anon_sym_SLASH_EQ] = ACTIONS(1491), + [anon_sym_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_PLUS_EQ] = ACTIONS(1491), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1491), + [anon_sym_DASH_EQ] = ACTIONS(1491), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_EQ] = ACTIONS(1491), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1491), + [anon_sym_GT_GT_EQ] = ACTIONS(1491), + [anon_sym_AMP_EQ] = ACTIONS(1491), + [anon_sym_CARET_EQ] = ACTIONS(1491), + [anon_sym_PIPE_EQ] = ACTIONS(1491), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1491), + [anon_sym_EQ_EQ] = ACTIONS(1491), + [anon_sym_BANG_EQ] = ACTIONS(1491), + [anon_sym_LT] = ACTIONS(1493), + [anon_sym_GT] = ACTIONS(1493), + [anon_sym_LT_EQ] = ACTIONS(1491), + [anon_sym_GT_EQ] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1493), + [anon_sym_CARET] = ACTIONS(1493), + [anon_sym_orelse] = ACTIONS(1491), + [anon_sym_catch] = ACTIONS(1491), + [anon_sym_LT_LT] = ACTIONS(1493), + [anon_sym_GT_GT] = ACTIONS(1493), + [anon_sym_LT_LT_PIPE] = ACTIONS(1493), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_PLUS_PLUS] = ACTIONS(1491), + [anon_sym_PLUS_PERCENT] = ACTIONS(1493), + [anon_sym_DASH_PERCENT] = ACTIONS(1493), + [anon_sym_PLUS_PIPE] = ACTIONS(1493), + [anon_sym_DASH_PIPE] = ACTIONS(1493), + [anon_sym_PIPE_PIPE] = ACTIONS(1491), + [anon_sym_SLASH] = ACTIONS(1493), + [anon_sym_PERCENT] = ACTIONS(1493), + [anon_sym_STAR_STAR] = ACTIONS(1491), + [anon_sym_STAR_PERCENT] = ACTIONS(1493), + [anon_sym_STAR_PIPE] = ACTIONS(1493), + [anon_sym_align] = ACTIONS(1491), + [anon_sym_DOT_DOT] = ACTIONS(1491), + [anon_sym_DOT_STAR] = ACTIONS(1491), + [anon_sym_DOT_QMARK] = ACTIONS(1491), [sym_line_comment] = ACTIONS(95), }, [807] = { - [anon_sym_COMMA] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1465), - [anon_sym_BANG] = ACTIONS(1467), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1467), - [anon_sym_else] = ACTIONS(1465), - [anon_sym_or] = ACTIONS(1467), - [anon_sym_and] = ACTIONS(1465), - [anon_sym_LBRACE] = ACTIONS(1465), - [anon_sym_RBRACE] = ACTIONS(1465), - [anon_sym_DOT] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1465), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_LBRACK] = ACTIONS(1465), - [anon_sym_RBRACK] = ACTIONS(1465), - [anon_sym_linksection] = ACTIONS(1465), - [anon_sym_PIPE] = ACTIONS(1467), - [anon_sym_STAR] = ACTIONS(1467), - [anon_sym_EQ_GT] = ACTIONS(1465), - [anon_sym_STAR_EQ] = ACTIONS(1465), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1465), - [anon_sym_SLASH_EQ] = ACTIONS(1465), - [anon_sym_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_PLUS_EQ] = ACTIONS(1465), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1465), - [anon_sym_DASH_EQ] = ACTIONS(1465), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_EQ] = ACTIONS(1465), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1465), - [anon_sym_GT_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP_EQ] = ACTIONS(1465), - [anon_sym_CARET_EQ] = ACTIONS(1465), - [anon_sym_PIPE_EQ] = ACTIONS(1465), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1465), - [anon_sym_EQ_EQ] = ACTIONS(1465), - [anon_sym_BANG_EQ] = ACTIONS(1465), - [anon_sym_LT] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1465), - [anon_sym_GT_EQ] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1467), - [anon_sym_CARET] = ACTIONS(1467), - [anon_sym_orelse] = ACTIONS(1465), - [anon_sym_catch] = ACTIONS(1465), - [anon_sym_LT_LT] = ACTIONS(1467), - [anon_sym_GT_GT] = ACTIONS(1467), - [anon_sym_LT_LT_PIPE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1467), - [anon_sym_DASH] = ACTIONS(1467), - [anon_sym_PLUS_PLUS] = ACTIONS(1465), - [anon_sym_PLUS_PERCENT] = ACTIONS(1467), - [anon_sym_DASH_PERCENT] = ACTIONS(1467), - [anon_sym_PLUS_PIPE] = ACTIONS(1467), - [anon_sym_DASH_PIPE] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1465), - [anon_sym_SLASH] = ACTIONS(1467), - [anon_sym_PERCENT] = ACTIONS(1467), - [anon_sym_STAR_STAR] = ACTIONS(1465), - [anon_sym_STAR_PERCENT] = ACTIONS(1467), - [anon_sym_STAR_PIPE] = ACTIONS(1467), - [anon_sym_align] = ACTIONS(1465), - [anon_sym_DOT_DOT] = ACTIONS(1465), - [anon_sym_DOT_STAR] = ACTIONS(1465), - [anon_sym_DOT_QMARK] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1269), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_COLON] = ACTIONS(1269), + [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_else] = ACTIONS(1269), + [anon_sym_or] = ACTIONS(1271), + [anon_sym_and] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_DOT] = ACTIONS(1271), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_RPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_RBRACK] = ACTIONS(1269), + [anon_sym_linksection] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_EQ_GT] = ACTIONS(1269), + [anon_sym_STAR_EQ] = ACTIONS(1269), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1269), + [anon_sym_SLASH_EQ] = ACTIONS(1269), + [anon_sym_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1269), + [anon_sym_DASH_EQ] = ACTIONS(1269), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_EQ] = ACTIONS(1269), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1269), + [anon_sym_GT_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP_EQ] = ACTIONS(1269), + [anon_sym_CARET_EQ] = ACTIONS(1269), + [anon_sym_PIPE_EQ] = ACTIONS(1269), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1269), + [anon_sym_EQ_EQ] = ACTIONS(1269), + [anon_sym_BANG_EQ] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1271), + [anon_sym_GT] = ACTIONS(1271), + [anon_sym_LT_EQ] = ACTIONS(1269), + [anon_sym_GT_EQ] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1271), + [anon_sym_CARET] = ACTIONS(1271), + [anon_sym_orelse] = ACTIONS(1269), + [anon_sym_catch] = ACTIONS(1269), + [anon_sym_LT_LT] = ACTIONS(1271), + [anon_sym_GT_GT] = ACTIONS(1271), + [anon_sym_LT_LT_PIPE] = ACTIONS(1271), + [anon_sym_PLUS] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_PLUS_PLUS] = ACTIONS(1269), + [anon_sym_PLUS_PERCENT] = ACTIONS(1271), + [anon_sym_DASH_PERCENT] = ACTIONS(1271), + [anon_sym_PLUS_PIPE] = ACTIONS(1271), + [anon_sym_DASH_PIPE] = ACTIONS(1271), + [anon_sym_PIPE_PIPE] = ACTIONS(1269), + [anon_sym_SLASH] = ACTIONS(1271), + [anon_sym_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_STAR] = ACTIONS(1269), + [anon_sym_STAR_PERCENT] = ACTIONS(1271), + [anon_sym_STAR_PIPE] = ACTIONS(1271), + [anon_sym_align] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_DOT_STAR] = ACTIONS(1269), + [anon_sym_DOT_QMARK] = ACTIONS(1269), [sym_line_comment] = ACTIONS(95), }, [808] = { - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1471), - [anon_sym_COLON] = ACTIONS(1469), - [anon_sym_EQ] = ACTIONS(1471), - [anon_sym_else] = ACTIONS(1469), - [anon_sym_or] = ACTIONS(1471), - [anon_sym_and] = ACTIONS(1469), - [anon_sym_LBRACE] = ACTIONS(1469), - [anon_sym_RBRACE] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1471), - [anon_sym_LPAREN] = ACTIONS(1469), - [anon_sym_RPAREN] = ACTIONS(1469), - [anon_sym_LBRACK] = ACTIONS(1469), - [anon_sym_RBRACK] = ACTIONS(1469), - [anon_sym_linksection] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1471), - [anon_sym_STAR] = ACTIONS(1471), - [anon_sym_EQ_GT] = ACTIONS(1469), - [anon_sym_STAR_EQ] = ACTIONS(1469), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1469), - [anon_sym_SLASH_EQ] = ACTIONS(1469), - [anon_sym_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1469), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1469), - [anon_sym_DASH_EQ] = ACTIONS(1469), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1469), - [anon_sym_LT_LT_EQ] = ACTIONS(1469), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1469), - [anon_sym_GT_GT_EQ] = ACTIONS(1469), - [anon_sym_AMP_EQ] = ACTIONS(1469), - [anon_sym_CARET_EQ] = ACTIONS(1469), - [anon_sym_PIPE_EQ] = ACTIONS(1469), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1469), - [anon_sym_BANG_EQ] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1471), - [anon_sym_GT] = ACTIONS(1471), - [anon_sym_LT_EQ] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1471), - [anon_sym_CARET] = ACTIONS(1471), - [anon_sym_orelse] = ACTIONS(1469), - [anon_sym_catch] = ACTIONS(1469), - [anon_sym_LT_LT] = ACTIONS(1471), - [anon_sym_GT_GT] = ACTIONS(1471), - [anon_sym_LT_LT_PIPE] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1471), - [anon_sym_PLUS_PLUS] = ACTIONS(1469), - [anon_sym_PLUS_PERCENT] = ACTIONS(1471), - [anon_sym_DASH_PERCENT] = ACTIONS(1471), - [anon_sym_PLUS_PIPE] = ACTIONS(1471), - [anon_sym_DASH_PIPE] = ACTIONS(1471), - [anon_sym_PIPE_PIPE] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1471), - [anon_sym_PERCENT] = ACTIONS(1471), - [anon_sym_STAR_STAR] = ACTIONS(1469), - [anon_sym_STAR_PERCENT] = ACTIONS(1471), - [anon_sym_STAR_PIPE] = ACTIONS(1471), - [anon_sym_align] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_STAR] = ACTIONS(1469), - [anon_sym_DOT_QMARK] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1495), + [anon_sym_SEMI] = ACTIONS(1495), + [anon_sym_BANG] = ACTIONS(1497), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_EQ] = ACTIONS(1497), + [anon_sym_else] = ACTIONS(1495), + [anon_sym_or] = ACTIONS(1497), + [anon_sym_and] = ACTIONS(1495), + [anon_sym_LBRACE] = ACTIONS(1495), + [anon_sym_RBRACE] = ACTIONS(1495), + [anon_sym_DOT] = ACTIONS(1497), + [anon_sym_LPAREN] = ACTIONS(1495), + [anon_sym_RPAREN] = ACTIONS(1495), + [anon_sym_LBRACK] = ACTIONS(1495), + [anon_sym_RBRACK] = ACTIONS(1495), + [anon_sym_linksection] = ACTIONS(1495), + [anon_sym_PIPE] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1497), + [anon_sym_EQ_GT] = ACTIONS(1495), + [anon_sym_STAR_EQ] = ACTIONS(1495), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1495), + [anon_sym_SLASH_EQ] = ACTIONS(1495), + [anon_sym_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_PLUS_EQ] = ACTIONS(1495), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1495), + [anon_sym_DASH_EQ] = ACTIONS(1495), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_EQ] = ACTIONS(1495), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1495), + [anon_sym_GT_GT_EQ] = ACTIONS(1495), + [anon_sym_AMP_EQ] = ACTIONS(1495), + [anon_sym_CARET_EQ] = ACTIONS(1495), + [anon_sym_PIPE_EQ] = ACTIONS(1495), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1495), + [anon_sym_EQ_EQ] = ACTIONS(1495), + [anon_sym_BANG_EQ] = ACTIONS(1495), + [anon_sym_LT] = ACTIONS(1497), + [anon_sym_GT] = ACTIONS(1497), + [anon_sym_LT_EQ] = ACTIONS(1495), + [anon_sym_GT_EQ] = ACTIONS(1495), + [anon_sym_AMP] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1497), + [anon_sym_orelse] = ACTIONS(1495), + [anon_sym_catch] = ACTIONS(1495), + [anon_sym_LT_LT] = ACTIONS(1497), + [anon_sym_GT_GT] = ACTIONS(1497), + [anon_sym_LT_LT_PIPE] = ACTIONS(1497), + [anon_sym_PLUS] = ACTIONS(1497), + [anon_sym_DASH] = ACTIONS(1497), + [anon_sym_PLUS_PLUS] = ACTIONS(1495), + [anon_sym_PLUS_PERCENT] = ACTIONS(1497), + [anon_sym_DASH_PERCENT] = ACTIONS(1497), + [anon_sym_PLUS_PIPE] = ACTIONS(1497), + [anon_sym_DASH_PIPE] = ACTIONS(1497), + [anon_sym_PIPE_PIPE] = ACTIONS(1495), + [anon_sym_SLASH] = ACTIONS(1497), + [anon_sym_PERCENT] = ACTIONS(1497), + [anon_sym_STAR_STAR] = ACTIONS(1495), + [anon_sym_STAR_PERCENT] = ACTIONS(1497), + [anon_sym_STAR_PIPE] = ACTIONS(1497), + [anon_sym_align] = ACTIONS(1495), + [anon_sym_DOT_DOT] = ACTIONS(1495), + [anon_sym_DOT_STAR] = ACTIONS(1495), + [anon_sym_DOT_QMARK] = ACTIONS(1495), [sym_line_comment] = ACTIONS(95), }, [809] = { - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_BANG] = ACTIONS(1475), - [anon_sym_COLON] = ACTIONS(1473), - [anon_sym_EQ] = ACTIONS(1475), - [anon_sym_else] = ACTIONS(1473), - [anon_sym_or] = ACTIONS(1475), - [anon_sym_and] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1473), - [anon_sym_RPAREN] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1473), - [anon_sym_RBRACK] = ACTIONS(1473), - [anon_sym_linksection] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1475), - [anon_sym_STAR] = ACTIONS(1475), - [anon_sym_EQ_GT] = ACTIONS(1473), - [anon_sym_STAR_EQ] = ACTIONS(1473), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1473), - [anon_sym_SLASH_EQ] = ACTIONS(1473), - [anon_sym_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_PLUS_EQ] = ACTIONS(1473), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1473), - [anon_sym_DASH_EQ] = ACTIONS(1473), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_EQ] = ACTIONS(1473), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1473), - [anon_sym_GT_GT_EQ] = ACTIONS(1473), - [anon_sym_AMP_EQ] = ACTIONS(1473), - [anon_sym_CARET_EQ] = ACTIONS(1473), - [anon_sym_PIPE_EQ] = ACTIONS(1473), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1473), - [anon_sym_EQ_EQ] = ACTIONS(1473), - [anon_sym_BANG_EQ] = ACTIONS(1473), - [anon_sym_LT] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1473), - [anon_sym_AMP] = ACTIONS(1475), - [anon_sym_CARET] = ACTIONS(1475), - [anon_sym_orelse] = ACTIONS(1473), - [anon_sym_catch] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1475), - [anon_sym_GT_GT] = ACTIONS(1475), - [anon_sym_LT_LT_PIPE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1475), - [anon_sym_DASH] = ACTIONS(1475), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_PLUS_PERCENT] = ACTIONS(1475), - [anon_sym_DASH_PERCENT] = ACTIONS(1475), - [anon_sym_PLUS_PIPE] = ACTIONS(1475), - [anon_sym_DASH_PIPE] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1473), - [anon_sym_SLASH] = ACTIONS(1475), - [anon_sym_PERCENT] = ACTIONS(1475), - [anon_sym_STAR_STAR] = ACTIONS(1473), - [anon_sym_STAR_PERCENT] = ACTIONS(1475), - [anon_sym_STAR_PIPE] = ACTIONS(1475), - [anon_sym_align] = ACTIONS(1473), - [anon_sym_DOT_DOT] = ACTIONS(1473), - [anon_sym_DOT_STAR] = ACTIONS(1473), - [anon_sym_DOT_QMARK] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1499), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_BANG] = ACTIONS(1501), + [anon_sym_COLON] = ACTIONS(1499), + [anon_sym_EQ] = ACTIONS(1501), + [anon_sym_else] = ACTIONS(1499), + [anon_sym_or] = ACTIONS(1501), + [anon_sym_and] = ACTIONS(1499), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1499), + [anon_sym_DOT] = ACTIONS(1501), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_RBRACK] = ACTIONS(1499), + [anon_sym_linksection] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1501), + [anon_sym_STAR] = ACTIONS(1501), + [anon_sym_EQ_GT] = ACTIONS(1499), + [anon_sym_STAR_EQ] = ACTIONS(1499), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1499), + [anon_sym_SLASH_EQ] = ACTIONS(1499), + [anon_sym_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_PLUS_EQ] = ACTIONS(1499), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1499), + [anon_sym_DASH_EQ] = ACTIONS(1499), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_EQ] = ACTIONS(1499), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1499), + [anon_sym_GT_GT_EQ] = ACTIONS(1499), + [anon_sym_AMP_EQ] = ACTIONS(1499), + [anon_sym_CARET_EQ] = ACTIONS(1499), + [anon_sym_PIPE_EQ] = ACTIONS(1499), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1499), + [anon_sym_EQ_EQ] = ACTIONS(1499), + [anon_sym_BANG_EQ] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1501), + [anon_sym_GT] = ACTIONS(1501), + [anon_sym_LT_EQ] = ACTIONS(1499), + [anon_sym_GT_EQ] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1501), + [anon_sym_CARET] = ACTIONS(1501), + [anon_sym_orelse] = ACTIONS(1499), + [anon_sym_catch] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1501), + [anon_sym_GT_GT] = ACTIONS(1501), + [anon_sym_LT_LT_PIPE] = ACTIONS(1501), + [anon_sym_PLUS] = ACTIONS(1501), + [anon_sym_DASH] = ACTIONS(1501), + [anon_sym_PLUS_PLUS] = ACTIONS(1499), + [anon_sym_PLUS_PERCENT] = ACTIONS(1501), + [anon_sym_DASH_PERCENT] = ACTIONS(1501), + [anon_sym_PLUS_PIPE] = ACTIONS(1501), + [anon_sym_DASH_PIPE] = ACTIONS(1501), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_SLASH] = ACTIONS(1501), + [anon_sym_PERCENT] = ACTIONS(1501), + [anon_sym_STAR_STAR] = ACTIONS(1499), + [anon_sym_STAR_PERCENT] = ACTIONS(1501), + [anon_sym_STAR_PIPE] = ACTIONS(1501), + [anon_sym_align] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1499), + [anon_sym_DOT_STAR] = ACTIONS(1499), + [anon_sym_DOT_QMARK] = ACTIONS(1499), [sym_line_comment] = ACTIONS(95), }, [810] = { + [anon_sym_COMMA] = ACTIONS(508), + [anon_sym_SEMI] = ACTIONS(508), + [anon_sym_BANG] = ACTIONS(506), + [anon_sym_COLON] = ACTIONS(508), + [anon_sym_EQ] = ACTIONS(506), + [anon_sym_else] = ACTIONS(508), + [anon_sym_or] = ACTIONS(506), + [anon_sym_and] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(508), + [anon_sym_RBRACE] = ACTIONS(508), + [anon_sym_DOT] = ACTIONS(506), + [anon_sym_LPAREN] = ACTIONS(508), + [anon_sym_RPAREN] = ACTIONS(508), + [anon_sym_LBRACK] = ACTIONS(508), + [anon_sym_RBRACK] = ACTIONS(508), + [anon_sym_linksection] = ACTIONS(508), + [anon_sym_PIPE] = ACTIONS(506), + [anon_sym_STAR] = ACTIONS(506), + [anon_sym_EQ_GT] = ACTIONS(508), + [anon_sym_STAR_EQ] = ACTIONS(508), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(508), + [anon_sym_SLASH_EQ] = ACTIONS(508), + [anon_sym_PERCENT_EQ] = ACTIONS(508), + [anon_sym_PLUS_EQ] = ACTIONS(508), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(508), + [anon_sym_DASH_EQ] = ACTIONS(508), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(508), + [anon_sym_LT_LT_EQ] = ACTIONS(508), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(508), + [anon_sym_GT_GT_EQ] = ACTIONS(508), + [anon_sym_AMP_EQ] = ACTIONS(508), + [anon_sym_CARET_EQ] = ACTIONS(508), + [anon_sym_PIPE_EQ] = ACTIONS(508), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(508), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(508), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(508), + [anon_sym_EQ_EQ] = ACTIONS(508), + [anon_sym_BANG_EQ] = ACTIONS(508), + [anon_sym_LT] = ACTIONS(506), + [anon_sym_GT] = ACTIONS(506), + [anon_sym_LT_EQ] = ACTIONS(508), + [anon_sym_GT_EQ] = ACTIONS(508), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_CARET] = ACTIONS(506), + [anon_sym_orelse] = ACTIONS(508), + [anon_sym_catch] = ACTIONS(508), + [anon_sym_LT_LT] = ACTIONS(506), + [anon_sym_GT_GT] = ACTIONS(506), + [anon_sym_LT_LT_PIPE] = ACTIONS(506), + [anon_sym_PLUS] = ACTIONS(506), + [anon_sym_DASH] = ACTIONS(506), + [anon_sym_PLUS_PLUS] = ACTIONS(508), + [anon_sym_PLUS_PERCENT] = ACTIONS(506), + [anon_sym_DASH_PERCENT] = ACTIONS(506), + [anon_sym_PLUS_PIPE] = ACTIONS(506), + [anon_sym_DASH_PIPE] = ACTIONS(506), + [anon_sym_PIPE_PIPE] = ACTIONS(508), + [anon_sym_SLASH] = ACTIONS(506), + [anon_sym_PERCENT] = ACTIONS(506), + [anon_sym_STAR_STAR] = ACTIONS(508), + [anon_sym_STAR_PERCENT] = ACTIONS(506), + [anon_sym_STAR_PIPE] = ACTIONS(506), + [anon_sym_align] = ACTIONS(508), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_STAR] = ACTIONS(508), + [anon_sym_DOT_QMARK] = ACTIONS(508), + [sym_line_comment] = ACTIONS(95), + }, + [811] = { [anon_sym_COMMA] = ACTIONS(526), [anon_sym_SEMI] = ACTIONS(526), [anon_sym_BANG] = ACTIONS(528), @@ -84047,904 +84156,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(526), [sym_line_comment] = ACTIONS(95), }, - [811] = { - [anon_sym_COMMA] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_else] = ACTIONS(1477), - [anon_sym_or] = ACTIONS(1479), - [anon_sym_and] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1477), - [anon_sym_RBRACE] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_RBRACK] = ACTIONS(1477), - [anon_sym_linksection] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_EQ_GT] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_orelse] = ACTIONS(1477), - [anon_sym_catch] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_LT_LT_PIPE] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_PLUS_PERCENT] = ACTIONS(1479), - [anon_sym_DASH_PERCENT] = ACTIONS(1479), - [anon_sym_PLUS_PIPE] = ACTIONS(1479), - [anon_sym_DASH_PIPE] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_STAR_STAR] = ACTIONS(1477), - [anon_sym_STAR_PERCENT] = ACTIONS(1479), - [anon_sym_STAR_PIPE] = ACTIONS(1479), - [anon_sym_align] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_STAR] = ACTIONS(1477), - [anon_sym_DOT_QMARK] = ACTIONS(1477), - [sym_line_comment] = ACTIONS(95), - }, [812] = { - [anon_sym_COMMA] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_COLON] = ACTIONS(1481), - [anon_sym_EQ] = ACTIONS(1483), - [anon_sym_else] = ACTIONS(1481), - [anon_sym_or] = ACTIONS(1483), - [anon_sym_and] = ACTIONS(1481), - [anon_sym_LBRACE] = ACTIONS(1481), - [anon_sym_RBRACE] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1481), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_LBRACK] = ACTIONS(1481), - [anon_sym_RBRACK] = ACTIONS(1481), - [anon_sym_linksection] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_STAR] = ACTIONS(1483), - [anon_sym_EQ_GT] = ACTIONS(1481), - [anon_sym_STAR_EQ] = ACTIONS(1481), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1481), - [anon_sym_SLASH_EQ] = ACTIONS(1481), - [anon_sym_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_PLUS_EQ] = ACTIONS(1481), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1481), - [anon_sym_DASH_EQ] = ACTIONS(1481), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_EQ] = ACTIONS(1481), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1481), - [anon_sym_GT_GT_EQ] = ACTIONS(1481), - [anon_sym_AMP_EQ] = ACTIONS(1481), - [anon_sym_CARET_EQ] = ACTIONS(1481), - [anon_sym_PIPE_EQ] = ACTIONS(1481), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1481), - [anon_sym_BANG_EQ] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1483), - [anon_sym_orelse] = ACTIONS(1481), - [anon_sym_catch] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1483), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_LT_LT_PIPE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1481), - [anon_sym_PLUS_PERCENT] = ACTIONS(1483), - [anon_sym_DASH_PERCENT] = ACTIONS(1483), - [anon_sym_PLUS_PIPE] = ACTIONS(1483), - [anon_sym_DASH_PIPE] = ACTIONS(1483), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PERCENT] = ACTIONS(1483), - [anon_sym_STAR_STAR] = ACTIONS(1481), - [anon_sym_STAR_PERCENT] = ACTIONS(1483), - [anon_sym_STAR_PIPE] = ACTIONS(1483), - [anon_sym_align] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_STAR] = ACTIONS(1481), - [anon_sym_DOT_QMARK] = ACTIONS(1481), + [anon_sym_COMMA] = ACTIONS(1503), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_BANG] = ACTIONS(1505), + [anon_sym_COLON] = ACTIONS(1503), + [anon_sym_EQ] = ACTIONS(1505), + [anon_sym_else] = ACTIONS(1503), + [anon_sym_or] = ACTIONS(1505), + [anon_sym_and] = ACTIONS(1503), + [anon_sym_LBRACE] = ACTIONS(1503), + [anon_sym_RBRACE] = ACTIONS(1503), + [anon_sym_DOT] = ACTIONS(1505), + [anon_sym_LPAREN] = ACTIONS(1503), + [anon_sym_RPAREN] = ACTIONS(1503), + [anon_sym_LBRACK] = ACTIONS(1503), + [anon_sym_RBRACK] = ACTIONS(1503), + [anon_sym_linksection] = ACTIONS(1503), + [anon_sym_PIPE] = ACTIONS(1505), + [anon_sym_STAR] = ACTIONS(1505), + [anon_sym_EQ_GT] = ACTIONS(1503), + [anon_sym_STAR_EQ] = ACTIONS(1503), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1503), + [anon_sym_SLASH_EQ] = ACTIONS(1503), + [anon_sym_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1503), + [anon_sym_DASH_EQ] = ACTIONS(1503), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_EQ] = ACTIONS(1503), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1503), + [anon_sym_GT_GT_EQ] = ACTIONS(1503), + [anon_sym_AMP_EQ] = ACTIONS(1503), + [anon_sym_CARET_EQ] = ACTIONS(1503), + [anon_sym_PIPE_EQ] = ACTIONS(1503), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1503), + [anon_sym_EQ_EQ] = ACTIONS(1503), + [anon_sym_BANG_EQ] = ACTIONS(1503), + [anon_sym_LT] = ACTIONS(1505), + [anon_sym_GT] = ACTIONS(1505), + [anon_sym_LT_EQ] = ACTIONS(1503), + [anon_sym_GT_EQ] = ACTIONS(1503), + [anon_sym_AMP] = ACTIONS(1505), + [anon_sym_CARET] = ACTIONS(1505), + [anon_sym_orelse] = ACTIONS(1503), + [anon_sym_catch] = ACTIONS(1503), + [anon_sym_LT_LT] = ACTIONS(1505), + [anon_sym_GT_GT] = ACTIONS(1505), + [anon_sym_LT_LT_PIPE] = ACTIONS(1505), + [anon_sym_PLUS] = ACTIONS(1505), + [anon_sym_DASH] = ACTIONS(1505), + [anon_sym_PLUS_PLUS] = ACTIONS(1503), + [anon_sym_PLUS_PERCENT] = ACTIONS(1505), + [anon_sym_DASH_PERCENT] = ACTIONS(1505), + [anon_sym_PLUS_PIPE] = ACTIONS(1505), + [anon_sym_DASH_PIPE] = ACTIONS(1505), + [anon_sym_PIPE_PIPE] = ACTIONS(1503), + [anon_sym_SLASH] = ACTIONS(1505), + [anon_sym_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_STAR] = ACTIONS(1503), + [anon_sym_STAR_PERCENT] = ACTIONS(1505), + [anon_sym_STAR_PIPE] = ACTIONS(1505), + [anon_sym_align] = ACTIONS(1503), + [anon_sym_DOT_DOT] = ACTIONS(1503), + [anon_sym_DOT_STAR] = ACTIONS(1503), + [anon_sym_DOT_QMARK] = ACTIONS(1503), [sym_line_comment] = ACTIONS(95), }, [813] = { - [anon_sym_COMMA] = ACTIONS(560), - [anon_sym_SEMI] = ACTIONS(560), - [anon_sym_BANG] = ACTIONS(558), - [anon_sym_COLON] = ACTIONS(560), - [anon_sym_EQ] = ACTIONS(558), - [anon_sym_else] = ACTIONS(560), - [anon_sym_or] = ACTIONS(558), - [anon_sym_and] = ACTIONS(560), - [anon_sym_LBRACE] = ACTIONS(560), - [anon_sym_RBRACE] = ACTIONS(560), - [anon_sym_DOT] = ACTIONS(558), - [anon_sym_LPAREN] = ACTIONS(560), - [anon_sym_RPAREN] = ACTIONS(560), - [anon_sym_LBRACK] = ACTIONS(560), - [anon_sym_RBRACK] = ACTIONS(560), - [anon_sym_linksection] = ACTIONS(560), - [anon_sym_PIPE] = ACTIONS(558), - [anon_sym_STAR] = ACTIONS(558), - [anon_sym_EQ_GT] = ACTIONS(560), - [anon_sym_STAR_EQ] = ACTIONS(560), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(560), - [anon_sym_SLASH_EQ] = ACTIONS(560), - [anon_sym_PERCENT_EQ] = ACTIONS(560), - [anon_sym_PLUS_EQ] = ACTIONS(560), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(560), - [anon_sym_DASH_EQ] = ACTIONS(560), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(560), - [anon_sym_LT_LT_EQ] = ACTIONS(560), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(560), - [anon_sym_GT_GT_EQ] = ACTIONS(560), - [anon_sym_AMP_EQ] = ACTIONS(560), - [anon_sym_CARET_EQ] = ACTIONS(560), - [anon_sym_PIPE_EQ] = ACTIONS(560), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(560), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(560), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(560), - [anon_sym_EQ_EQ] = ACTIONS(560), - [anon_sym_BANG_EQ] = ACTIONS(560), - [anon_sym_LT] = ACTIONS(558), - [anon_sym_GT] = ACTIONS(558), - [anon_sym_LT_EQ] = ACTIONS(560), - [anon_sym_GT_EQ] = ACTIONS(560), - [anon_sym_AMP] = ACTIONS(558), - [anon_sym_CARET] = ACTIONS(558), - [anon_sym_orelse] = ACTIONS(560), - [anon_sym_catch] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(558), - [anon_sym_GT_GT] = ACTIONS(558), - [anon_sym_LT_LT_PIPE] = ACTIONS(558), - [anon_sym_PLUS] = ACTIONS(558), - [anon_sym_DASH] = ACTIONS(558), - [anon_sym_PLUS_PLUS] = ACTIONS(560), - [anon_sym_PLUS_PERCENT] = ACTIONS(558), - [anon_sym_DASH_PERCENT] = ACTIONS(558), - [anon_sym_PLUS_PIPE] = ACTIONS(558), - [anon_sym_DASH_PIPE] = ACTIONS(558), - [anon_sym_PIPE_PIPE] = ACTIONS(560), - [anon_sym_SLASH] = ACTIONS(558), - [anon_sym_PERCENT] = ACTIONS(558), - [anon_sym_STAR_STAR] = ACTIONS(560), - [anon_sym_STAR_PERCENT] = ACTIONS(558), - [anon_sym_STAR_PIPE] = ACTIONS(558), - [anon_sym_align] = ACTIONS(560), - [anon_sym_DOT_DOT] = ACTIONS(560), - [anon_sym_DOT_STAR] = ACTIONS(560), - [anon_sym_DOT_QMARK] = ACTIONS(560), + [anon_sym_COMMA] = ACTIONS(1507), + [anon_sym_SEMI] = ACTIONS(1507), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_COLON] = ACTIONS(1507), + [anon_sym_EQ] = ACTIONS(1509), + [anon_sym_else] = ACTIONS(1507), + [anon_sym_or] = ACTIONS(1509), + [anon_sym_and] = ACTIONS(1507), + [anon_sym_LBRACE] = ACTIONS(1507), + [anon_sym_RBRACE] = ACTIONS(1507), + [anon_sym_DOT] = ACTIONS(1509), + [anon_sym_LPAREN] = ACTIONS(1507), + [anon_sym_RPAREN] = ACTIONS(1507), + [anon_sym_LBRACK] = ACTIONS(1507), + [anon_sym_RBRACK] = ACTIONS(1507), + [anon_sym_linksection] = ACTIONS(1507), + [anon_sym_PIPE] = ACTIONS(1509), + [anon_sym_STAR] = ACTIONS(1509), + [anon_sym_EQ_GT] = ACTIONS(1507), + [anon_sym_STAR_EQ] = ACTIONS(1507), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1507), + [anon_sym_SLASH_EQ] = ACTIONS(1507), + [anon_sym_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1507), + [anon_sym_DASH_EQ] = ACTIONS(1507), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_EQ] = ACTIONS(1507), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1507), + [anon_sym_GT_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP_EQ] = ACTIONS(1507), + [anon_sym_CARET_EQ] = ACTIONS(1507), + [anon_sym_PIPE_EQ] = ACTIONS(1507), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1507), + [anon_sym_EQ_EQ] = ACTIONS(1507), + [anon_sym_BANG_EQ] = ACTIONS(1507), + [anon_sym_LT] = ACTIONS(1509), + [anon_sym_GT] = ACTIONS(1509), + [anon_sym_LT_EQ] = ACTIONS(1507), + [anon_sym_GT_EQ] = ACTIONS(1507), + [anon_sym_AMP] = ACTIONS(1509), + [anon_sym_CARET] = ACTIONS(1509), + [anon_sym_orelse] = ACTIONS(1507), + [anon_sym_catch] = ACTIONS(1507), + [anon_sym_LT_LT] = ACTIONS(1509), + [anon_sym_GT_GT] = ACTIONS(1509), + [anon_sym_LT_LT_PIPE] = ACTIONS(1509), + [anon_sym_PLUS] = ACTIONS(1509), + [anon_sym_DASH] = ACTIONS(1509), + [anon_sym_PLUS_PLUS] = ACTIONS(1507), + [anon_sym_PLUS_PERCENT] = ACTIONS(1509), + [anon_sym_DASH_PERCENT] = ACTIONS(1509), + [anon_sym_PLUS_PIPE] = ACTIONS(1509), + [anon_sym_DASH_PIPE] = ACTIONS(1509), + [anon_sym_PIPE_PIPE] = ACTIONS(1507), + [anon_sym_SLASH] = ACTIONS(1509), + [anon_sym_PERCENT] = ACTIONS(1509), + [anon_sym_STAR_STAR] = ACTIONS(1507), + [anon_sym_STAR_PERCENT] = ACTIONS(1509), + [anon_sym_STAR_PIPE] = ACTIONS(1509), + [anon_sym_align] = ACTIONS(1507), + [anon_sym_DOT_DOT] = ACTIONS(1507), + [anon_sym_DOT_STAR] = ACTIONS(1507), + [anon_sym_DOT_QMARK] = ACTIONS(1507), [sym_line_comment] = ACTIONS(95), }, [814] = { - [anon_sym_COMMA] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1487), - [anon_sym_COLON] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(1487), - [anon_sym_else] = ACTIONS(1485), - [anon_sym_or] = ACTIONS(1487), - [anon_sym_and] = ACTIONS(1485), - [anon_sym_LBRACE] = ACTIONS(1485), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1487), - [anon_sym_LPAREN] = ACTIONS(1485), - [anon_sym_RPAREN] = ACTIONS(1485), - [anon_sym_LBRACK] = ACTIONS(1485), - [anon_sym_RBRACK] = ACTIONS(1485), - [anon_sym_linksection] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1487), - [anon_sym_STAR] = ACTIONS(1487), - [anon_sym_EQ_GT] = ACTIONS(1485), - [anon_sym_STAR_EQ] = ACTIONS(1485), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1485), - [anon_sym_SLASH_EQ] = ACTIONS(1485), - [anon_sym_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1485), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1485), - [anon_sym_DASH_EQ] = ACTIONS(1485), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_EQ] = ACTIONS(1485), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1485), - [anon_sym_GT_GT_EQ] = ACTIONS(1485), - [anon_sym_AMP_EQ] = ACTIONS(1485), - [anon_sym_CARET_EQ] = ACTIONS(1485), - [anon_sym_PIPE_EQ] = ACTIONS(1485), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1485), - [anon_sym_BANG_EQ] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1487), - [anon_sym_GT] = ACTIONS(1487), - [anon_sym_LT_EQ] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1487), - [anon_sym_CARET] = ACTIONS(1487), - [anon_sym_orelse] = ACTIONS(1485), - [anon_sym_catch] = ACTIONS(1485), - [anon_sym_LT_LT] = ACTIONS(1487), - [anon_sym_GT_GT] = ACTIONS(1487), - [anon_sym_LT_LT_PIPE] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(1487), - [anon_sym_DASH] = ACTIONS(1487), - [anon_sym_PLUS_PLUS] = ACTIONS(1485), - [anon_sym_PLUS_PERCENT] = ACTIONS(1487), - [anon_sym_DASH_PERCENT] = ACTIONS(1487), - [anon_sym_PLUS_PIPE] = ACTIONS(1487), - [anon_sym_DASH_PIPE] = ACTIONS(1487), - [anon_sym_PIPE_PIPE] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1487), - [anon_sym_PERCENT] = ACTIONS(1487), - [anon_sym_STAR_STAR] = ACTIONS(1485), - [anon_sym_STAR_PERCENT] = ACTIONS(1487), - [anon_sym_STAR_PIPE] = ACTIONS(1487), - [anon_sym_align] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_STAR] = ACTIONS(1485), - [anon_sym_DOT_QMARK] = ACTIONS(1485), + [sym__ElseTypeExprTail] = STATE(774), + [anon_sym_COMMA] = ACTIONS(1303), + [anon_sym_SEMI] = ACTIONS(1303), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_EQ] = ACTIONS(1305), + [anon_sym_else] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1305), + [anon_sym_and] = ACTIONS(1303), + [anon_sym_LBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_RBRACK] = ACTIONS(1303), + [anon_sym_linksection] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1305), + [anon_sym_STAR] = ACTIONS(1305), + [anon_sym_EQ_GT] = ACTIONS(1303), + [anon_sym_STAR_EQ] = ACTIONS(1303), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1303), + [anon_sym_SLASH_EQ] = ACTIONS(1303), + [anon_sym_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_PLUS_EQ] = ACTIONS(1303), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1303), + [anon_sym_DASH_EQ] = ACTIONS(1303), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1303), + [anon_sym_LT_LT_EQ] = ACTIONS(1303), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1303), + [anon_sym_GT_GT_EQ] = ACTIONS(1303), + [anon_sym_AMP_EQ] = ACTIONS(1303), + [anon_sym_CARET_EQ] = ACTIONS(1303), + [anon_sym_PIPE_EQ] = ACTIONS(1303), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1303), + [anon_sym_EQ_EQ] = ACTIONS(1303), + [anon_sym_BANG_EQ] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(1305), + [anon_sym_GT] = ACTIONS(1305), + [anon_sym_LT_EQ] = ACTIONS(1303), + [anon_sym_GT_EQ] = ACTIONS(1303), + [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_CARET] = ACTIONS(1305), + [anon_sym_orelse] = ACTIONS(1303), + [anon_sym_catch] = ACTIONS(1303), + [anon_sym_LT_LT] = ACTIONS(1305), + [anon_sym_GT_GT] = ACTIONS(1305), + [anon_sym_LT_LT_PIPE] = ACTIONS(1305), + [anon_sym_PLUS] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1305), + [anon_sym_PLUS_PLUS] = ACTIONS(1303), + [anon_sym_PLUS_PERCENT] = ACTIONS(1305), + [anon_sym_DASH_PERCENT] = ACTIONS(1305), + [anon_sym_PLUS_PIPE] = ACTIONS(1305), + [anon_sym_DASH_PIPE] = ACTIONS(1305), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [anon_sym_SLASH] = ACTIONS(1305), + [anon_sym_PERCENT] = ACTIONS(1305), + [anon_sym_STAR_STAR] = ACTIONS(1303), + [anon_sym_STAR_PERCENT] = ACTIONS(1305), + [anon_sym_STAR_PIPE] = ACTIONS(1305), + [anon_sym_align] = ACTIONS(1303), + [anon_sym_DOT_DOT] = ACTIONS(1303), + [anon_sym_DOT_STAR] = ACTIONS(1303), + [anon_sym_DOT_QMARK] = ACTIONS(1303), [sym_line_comment] = ACTIONS(95), }, [815] = { - [anon_sym_COMMA] = ACTIONS(1489), - [anon_sym_SEMI] = ACTIONS(1489), - [anon_sym_BANG] = ACTIONS(1491), - [anon_sym_COLON] = ACTIONS(1489), - [anon_sym_EQ] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1489), - [anon_sym_or] = ACTIONS(1491), - [anon_sym_and] = ACTIONS(1489), - [anon_sym_LBRACE] = ACTIONS(1489), - [anon_sym_RBRACE] = ACTIONS(1489), - [anon_sym_DOT] = ACTIONS(1491), - [anon_sym_LPAREN] = ACTIONS(1489), - [anon_sym_RPAREN] = ACTIONS(1489), - [anon_sym_LBRACK] = ACTIONS(1489), - [anon_sym_RBRACK] = ACTIONS(1489), - [anon_sym_linksection] = ACTIONS(1489), - [anon_sym_PIPE] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_EQ_GT] = ACTIONS(1489), - [anon_sym_STAR_EQ] = ACTIONS(1489), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1489), - [anon_sym_SLASH_EQ] = ACTIONS(1489), - [anon_sym_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_PLUS_EQ] = ACTIONS(1489), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1489), - [anon_sym_DASH_EQ] = ACTIONS(1489), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_EQ] = ACTIONS(1489), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1489), - [anon_sym_GT_GT_EQ] = ACTIONS(1489), - [anon_sym_AMP_EQ] = ACTIONS(1489), - [anon_sym_CARET_EQ] = ACTIONS(1489), - [anon_sym_PIPE_EQ] = ACTIONS(1489), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1489), - [anon_sym_EQ_EQ] = ACTIONS(1489), - [anon_sym_BANG_EQ] = ACTIONS(1489), - [anon_sym_LT] = ACTIONS(1491), - [anon_sym_GT] = ACTIONS(1491), - [anon_sym_LT_EQ] = ACTIONS(1489), - [anon_sym_GT_EQ] = ACTIONS(1489), - [anon_sym_AMP] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_orelse] = ACTIONS(1489), - [anon_sym_catch] = ACTIONS(1489), - [anon_sym_LT_LT] = ACTIONS(1491), - [anon_sym_GT_GT] = ACTIONS(1491), - [anon_sym_LT_LT_PIPE] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_PLUS_PLUS] = ACTIONS(1489), - [anon_sym_PLUS_PERCENT] = ACTIONS(1491), - [anon_sym_DASH_PERCENT] = ACTIONS(1491), - [anon_sym_PLUS_PIPE] = ACTIONS(1491), - [anon_sym_DASH_PIPE] = ACTIONS(1491), - [anon_sym_PIPE_PIPE] = ACTIONS(1489), - [anon_sym_SLASH] = ACTIONS(1491), - [anon_sym_PERCENT] = ACTIONS(1491), - [anon_sym_STAR_STAR] = ACTIONS(1489), - [anon_sym_STAR_PERCENT] = ACTIONS(1491), - [anon_sym_STAR_PIPE] = ACTIONS(1491), - [anon_sym_align] = ACTIONS(1489), - [anon_sym_DOT_DOT] = ACTIONS(1489), - [anon_sym_DOT_STAR] = ACTIONS(1489), - [anon_sym_DOT_QMARK] = ACTIONS(1489), - [sym_line_comment] = ACTIONS(95), - }, - [816] = { - [anon_sym_COMMA] = ACTIONS(1493), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_BANG] = ACTIONS(1495), - [anon_sym_COLON] = ACTIONS(1493), - [anon_sym_EQ] = ACTIONS(1495), - [anon_sym_else] = ACTIONS(1493), - [anon_sym_or] = ACTIONS(1495), - [anon_sym_and] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1493), - [anon_sym_RBRACE] = ACTIONS(1493), - [anon_sym_DOT] = ACTIONS(1495), - [anon_sym_LPAREN] = ACTIONS(1493), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_LBRACK] = ACTIONS(1493), - [anon_sym_RBRACK] = ACTIONS(1493), - [anon_sym_linksection] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1495), - [anon_sym_STAR] = ACTIONS(1495), - [anon_sym_EQ_GT] = ACTIONS(1493), - [anon_sym_STAR_EQ] = ACTIONS(1493), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1493), - [anon_sym_SLASH_EQ] = ACTIONS(1493), - [anon_sym_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_PLUS_EQ] = ACTIONS(1493), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1493), - [anon_sym_DASH_EQ] = ACTIONS(1493), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_EQ] = ACTIONS(1493), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1493), - [anon_sym_GT_GT_EQ] = ACTIONS(1493), - [anon_sym_AMP_EQ] = ACTIONS(1493), - [anon_sym_CARET_EQ] = ACTIONS(1493), - [anon_sym_PIPE_EQ] = ACTIONS(1493), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1493), - [anon_sym_EQ_EQ] = ACTIONS(1493), - [anon_sym_BANG_EQ] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1495), - [anon_sym_GT] = ACTIONS(1495), - [anon_sym_LT_EQ] = ACTIONS(1493), - [anon_sym_GT_EQ] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1495), - [anon_sym_CARET] = ACTIONS(1495), - [anon_sym_orelse] = ACTIONS(1493), - [anon_sym_catch] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1495), - [anon_sym_GT_GT] = ACTIONS(1495), - [anon_sym_LT_LT_PIPE] = ACTIONS(1495), - [anon_sym_PLUS] = ACTIONS(1495), - [anon_sym_DASH] = ACTIONS(1495), - [anon_sym_PLUS_PLUS] = ACTIONS(1493), - [anon_sym_PLUS_PERCENT] = ACTIONS(1495), - [anon_sym_DASH_PERCENT] = ACTIONS(1495), - [anon_sym_PLUS_PIPE] = ACTIONS(1495), - [anon_sym_DASH_PIPE] = ACTIONS(1495), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_SLASH] = ACTIONS(1495), - [anon_sym_PERCENT] = ACTIONS(1495), - [anon_sym_STAR_STAR] = ACTIONS(1493), - [anon_sym_STAR_PERCENT] = ACTIONS(1495), - [anon_sym_STAR_PIPE] = ACTIONS(1495), - [anon_sym_align] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1493), - [anon_sym_DOT_STAR] = ACTIONS(1493), - [anon_sym_DOT_QMARK] = ACTIONS(1493), - [sym_line_comment] = ACTIONS(95), - }, - [817] = { - [sym__ElseTypeExprTail] = STATE(820), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_SEMI] = ACTIONS(1309), - [anon_sym_BANG] = ACTIONS(1311), - [anon_sym_EQ] = ACTIONS(1311), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1311), - [anon_sym_and] = ACTIONS(1309), - [anon_sym_LBRACE] = ACTIONS(1309), - [anon_sym_RBRACE] = ACTIONS(1309), - [anon_sym_DOT] = ACTIONS(1311), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1309), - [anon_sym_LBRACK] = ACTIONS(1309), - [anon_sym_RBRACK] = ACTIONS(1309), - [anon_sym_linksection] = ACTIONS(1309), - [anon_sym_PIPE] = ACTIONS(1311), - [anon_sym_STAR] = ACTIONS(1311), - [anon_sym_EQ_GT] = ACTIONS(1309), - [anon_sym_STAR_EQ] = ACTIONS(1309), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1309), - [anon_sym_SLASH_EQ] = ACTIONS(1309), - [anon_sym_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_PLUS_EQ] = ACTIONS(1309), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1309), - [anon_sym_DASH_EQ] = ACTIONS(1309), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1309), - [anon_sym_LT_LT_EQ] = ACTIONS(1309), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1309), - [anon_sym_GT_GT_EQ] = ACTIONS(1309), - [anon_sym_AMP_EQ] = ACTIONS(1309), - [anon_sym_CARET_EQ] = ACTIONS(1309), - [anon_sym_PIPE_EQ] = ACTIONS(1309), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1309), - [anon_sym_EQ_EQ] = ACTIONS(1309), - [anon_sym_BANG_EQ] = ACTIONS(1309), - [anon_sym_LT] = ACTIONS(1311), - [anon_sym_GT] = ACTIONS(1311), - [anon_sym_LT_EQ] = ACTIONS(1309), - [anon_sym_GT_EQ] = ACTIONS(1309), - [anon_sym_AMP] = ACTIONS(1311), - [anon_sym_CARET] = ACTIONS(1311), - [anon_sym_orelse] = ACTIONS(1309), - [anon_sym_catch] = ACTIONS(1309), - [anon_sym_LT_LT] = ACTIONS(1311), - [anon_sym_GT_GT] = ACTIONS(1311), - [anon_sym_LT_LT_PIPE] = ACTIONS(1311), - [anon_sym_PLUS] = ACTIONS(1311), - [anon_sym_DASH] = ACTIONS(1311), - [anon_sym_PLUS_PLUS] = ACTIONS(1309), - [anon_sym_PLUS_PERCENT] = ACTIONS(1311), - [anon_sym_DASH_PERCENT] = ACTIONS(1311), - [anon_sym_PLUS_PIPE] = ACTIONS(1311), - [anon_sym_DASH_PIPE] = ACTIONS(1311), - [anon_sym_PIPE_PIPE] = ACTIONS(1309), - [anon_sym_SLASH] = ACTIONS(1311), - [anon_sym_PERCENT] = ACTIONS(1311), - [anon_sym_STAR_STAR] = ACTIONS(1309), - [anon_sym_STAR_PERCENT] = ACTIONS(1311), - [anon_sym_STAR_PIPE] = ACTIONS(1311), - [anon_sym_align] = ACTIONS(1309), - [anon_sym_DOT_DOT] = ACTIONS(1309), - [anon_sym_DOT_STAR] = ACTIONS(1309), - [anon_sym_DOT_QMARK] = ACTIONS(1309), - [sym_line_comment] = ACTIONS(95), - }, - [818] = { - [anon_sym_COMMA] = ACTIONS(1497), - [anon_sym_SEMI] = ACTIONS(1497), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(1499), - [anon_sym_else] = ACTIONS(1497), - [anon_sym_or] = ACTIONS(1499), - [anon_sym_and] = ACTIONS(1497), - [anon_sym_LBRACE] = ACTIONS(1497), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_DOT] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1497), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1497), - [anon_sym_RBRACK] = ACTIONS(1497), - [anon_sym_linksection] = ACTIONS(1497), - [anon_sym_PIPE] = ACTIONS(1499), - [anon_sym_STAR] = ACTIONS(1499), - [anon_sym_EQ_GT] = ACTIONS(1497), - [anon_sym_STAR_EQ] = ACTIONS(1497), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1497), - [anon_sym_SLASH_EQ] = ACTIONS(1497), - [anon_sym_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_PLUS_EQ] = ACTIONS(1497), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1497), - [anon_sym_DASH_EQ] = ACTIONS(1497), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_EQ] = ACTIONS(1497), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1497), - [anon_sym_GT_GT_EQ] = ACTIONS(1497), - [anon_sym_AMP_EQ] = ACTIONS(1497), - [anon_sym_CARET_EQ] = ACTIONS(1497), - [anon_sym_PIPE_EQ] = ACTIONS(1497), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1497), - [anon_sym_EQ_EQ] = ACTIONS(1497), - [anon_sym_BANG_EQ] = ACTIONS(1497), - [anon_sym_LT] = ACTIONS(1499), - [anon_sym_GT] = ACTIONS(1499), - [anon_sym_LT_EQ] = ACTIONS(1497), - [anon_sym_GT_EQ] = ACTIONS(1497), - [anon_sym_AMP] = ACTIONS(1499), - [anon_sym_CARET] = ACTIONS(1499), - [anon_sym_orelse] = ACTIONS(1497), - [anon_sym_catch] = ACTIONS(1497), - [anon_sym_LT_LT] = ACTIONS(1499), - [anon_sym_GT_GT] = ACTIONS(1499), - [anon_sym_LT_LT_PIPE] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1497), - [anon_sym_PLUS_PERCENT] = ACTIONS(1499), - [anon_sym_DASH_PERCENT] = ACTIONS(1499), - [anon_sym_PLUS_PIPE] = ACTIONS(1499), - [anon_sym_DASH_PIPE] = ACTIONS(1499), - [anon_sym_PIPE_PIPE] = ACTIONS(1497), - [anon_sym_SLASH] = ACTIONS(1499), - [anon_sym_PERCENT] = ACTIONS(1499), - [anon_sym_STAR_STAR] = ACTIONS(1497), - [anon_sym_STAR_PERCENT] = ACTIONS(1499), - [anon_sym_STAR_PIPE] = ACTIONS(1499), - [anon_sym_align] = ACTIONS(1497), - [anon_sym_DOT_DOT] = ACTIONS(1497), - [anon_sym_DOT_STAR] = ACTIONS(1497), - [anon_sym_DOT_QMARK] = ACTIONS(1497), - [sym_line_comment] = ACTIONS(95), - }, - [819] = { - [sym__ElseTypeExprTail] = STATE(800), - [anon_sym_COMMA] = ACTIONS(1288), - [anon_sym_SEMI] = ACTIONS(1288), - [anon_sym_BANG] = ACTIONS(1290), - [anon_sym_EQ] = ACTIONS(1290), - [anon_sym_else] = ACTIONS(1317), - [anon_sym_or] = ACTIONS(1290), - [anon_sym_and] = ACTIONS(1288), - [anon_sym_LBRACE] = ACTIONS(1288), - [anon_sym_RBRACE] = ACTIONS(1288), - [anon_sym_DOT] = ACTIONS(1290), - [anon_sym_LPAREN] = ACTIONS(1288), - [anon_sym_RPAREN] = ACTIONS(1288), - [anon_sym_LBRACK] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_linksection] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_STAR] = ACTIONS(1290), - [anon_sym_EQ_GT] = ACTIONS(1288), - [anon_sym_STAR_EQ] = ACTIONS(1288), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1288), - [anon_sym_SLASH_EQ] = ACTIONS(1288), - [anon_sym_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1288), - [anon_sym_DASH_EQ] = ACTIONS(1288), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1288), - [anon_sym_GT_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP_EQ] = ACTIONS(1288), - [anon_sym_CARET_EQ] = ACTIONS(1288), - [anon_sym_PIPE_EQ] = ACTIONS(1288), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1288), - [anon_sym_EQ_EQ] = ACTIONS(1288), - [anon_sym_BANG_EQ] = ACTIONS(1288), - [anon_sym_LT] = ACTIONS(1290), - [anon_sym_GT] = ACTIONS(1290), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_AMP] = ACTIONS(1290), - [anon_sym_CARET] = ACTIONS(1290), - [anon_sym_orelse] = ACTIONS(1288), - [anon_sym_catch] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1290), - [anon_sym_GT_GT] = ACTIONS(1290), - [anon_sym_LT_LT_PIPE] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1290), - [anon_sym_DASH] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1288), - [anon_sym_PLUS_PERCENT] = ACTIONS(1290), - [anon_sym_DASH_PERCENT] = ACTIONS(1290), - [anon_sym_PLUS_PIPE] = ACTIONS(1290), - [anon_sym_DASH_PIPE] = ACTIONS(1290), - [anon_sym_PIPE_PIPE] = ACTIONS(1288), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_PERCENT] = ACTIONS(1290), - [anon_sym_STAR_STAR] = ACTIONS(1288), - [anon_sym_STAR_PERCENT] = ACTIONS(1290), - [anon_sym_STAR_PIPE] = ACTIONS(1290), - [anon_sym_align] = ACTIONS(1288), - [anon_sym_DOT_DOT] = ACTIONS(1288), - [anon_sym_DOT_STAR] = ACTIONS(1288), - [anon_sym_DOT_QMARK] = ACTIONS(1288), - [sym_line_comment] = ACTIONS(95), - }, - [820] = { - [anon_sym_COMMA] = ACTIONS(1501), - [anon_sym_SEMI] = ACTIONS(1501), - [anon_sym_BANG] = ACTIONS(1503), - [anon_sym_COLON] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(1503), - [anon_sym_else] = ACTIONS(1501), - [anon_sym_or] = ACTIONS(1503), - [anon_sym_and] = ACTIONS(1501), - [anon_sym_LBRACE] = ACTIONS(1501), - [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_DOT] = ACTIONS(1503), - [anon_sym_LPAREN] = ACTIONS(1501), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1501), - [anon_sym_RBRACK] = ACTIONS(1501), - [anon_sym_linksection] = ACTIONS(1501), - [anon_sym_PIPE] = ACTIONS(1503), - [anon_sym_STAR] = ACTIONS(1503), - [anon_sym_EQ_GT] = ACTIONS(1501), - [anon_sym_STAR_EQ] = ACTIONS(1501), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1501), - [anon_sym_SLASH_EQ] = ACTIONS(1501), - [anon_sym_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_PLUS_EQ] = ACTIONS(1501), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1501), - [anon_sym_DASH_EQ] = ACTIONS(1501), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_EQ] = ACTIONS(1501), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1501), - [anon_sym_GT_GT_EQ] = ACTIONS(1501), - [anon_sym_AMP_EQ] = ACTIONS(1501), - [anon_sym_CARET_EQ] = ACTIONS(1501), - [anon_sym_PIPE_EQ] = ACTIONS(1501), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1501), - [anon_sym_EQ_EQ] = ACTIONS(1501), - [anon_sym_BANG_EQ] = ACTIONS(1501), - [anon_sym_LT] = ACTIONS(1503), - [anon_sym_GT] = ACTIONS(1503), - [anon_sym_LT_EQ] = ACTIONS(1501), - [anon_sym_GT_EQ] = ACTIONS(1501), - [anon_sym_AMP] = ACTIONS(1503), - [anon_sym_CARET] = ACTIONS(1503), - [anon_sym_orelse] = ACTIONS(1501), - [anon_sym_catch] = ACTIONS(1501), - [anon_sym_LT_LT] = ACTIONS(1503), - [anon_sym_GT_GT] = ACTIONS(1503), - [anon_sym_LT_LT_PIPE] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(1503), - [anon_sym_DASH] = ACTIONS(1503), - [anon_sym_PLUS_PLUS] = ACTIONS(1501), - [anon_sym_PLUS_PERCENT] = ACTIONS(1503), - [anon_sym_DASH_PERCENT] = ACTIONS(1503), - [anon_sym_PLUS_PIPE] = ACTIONS(1503), - [anon_sym_DASH_PIPE] = ACTIONS(1503), - [anon_sym_PIPE_PIPE] = ACTIONS(1501), - [anon_sym_SLASH] = ACTIONS(1503), - [anon_sym_PERCENT] = ACTIONS(1503), - [anon_sym_STAR_STAR] = ACTIONS(1501), - [anon_sym_STAR_PERCENT] = ACTIONS(1503), - [anon_sym_STAR_PIPE] = ACTIONS(1503), - [anon_sym_align] = ACTIONS(1501), - [anon_sym_DOT_DOT] = ACTIONS(1501), - [anon_sym_DOT_STAR] = ACTIONS(1501), - [anon_sym_DOT_QMARK] = ACTIONS(1501), - [sym_line_comment] = ACTIONS(95), - }, - [821] = { - [anon_sym_COMMA] = ACTIONS(1505), - [anon_sym_SEMI] = ACTIONS(1505), - [anon_sym_BANG] = ACTIONS(1507), - [anon_sym_COLON] = ACTIONS(1505), - [anon_sym_EQ] = ACTIONS(1507), - [anon_sym_else] = ACTIONS(1505), - [anon_sym_or] = ACTIONS(1507), - [anon_sym_and] = ACTIONS(1505), - [anon_sym_LBRACE] = ACTIONS(1505), - [anon_sym_RBRACE] = ACTIONS(1505), - [anon_sym_DOT] = ACTIONS(1507), - [anon_sym_LPAREN] = ACTIONS(1505), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1505), - [anon_sym_RBRACK] = ACTIONS(1505), - [anon_sym_linksection] = ACTIONS(1505), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_STAR] = ACTIONS(1507), - [anon_sym_EQ_GT] = ACTIONS(1505), - [anon_sym_STAR_EQ] = ACTIONS(1505), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1505), - [anon_sym_SLASH_EQ] = ACTIONS(1505), - [anon_sym_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_EQ] = ACTIONS(1505), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1505), - [anon_sym_DASH_EQ] = ACTIONS(1505), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_EQ] = ACTIONS(1505), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1505), - [anon_sym_GT_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP_EQ] = ACTIONS(1505), - [anon_sym_CARET_EQ] = ACTIONS(1505), - [anon_sym_PIPE_EQ] = ACTIONS(1505), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1505), - [anon_sym_EQ_EQ] = ACTIONS(1505), - [anon_sym_BANG_EQ] = ACTIONS(1505), - [anon_sym_LT] = ACTIONS(1507), - [anon_sym_GT] = ACTIONS(1507), - [anon_sym_LT_EQ] = ACTIONS(1505), - [anon_sym_GT_EQ] = ACTIONS(1505), - [anon_sym_AMP] = ACTIONS(1507), - [anon_sym_CARET] = ACTIONS(1507), - [anon_sym_orelse] = ACTIONS(1505), - [anon_sym_catch] = ACTIONS(1505), - [anon_sym_LT_LT] = ACTIONS(1507), - [anon_sym_GT_GT] = ACTIONS(1507), - [anon_sym_LT_LT_PIPE] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(1507), - [anon_sym_DASH] = ACTIONS(1507), - [anon_sym_PLUS_PLUS] = ACTIONS(1505), - [anon_sym_PLUS_PERCENT] = ACTIONS(1507), - [anon_sym_DASH_PERCENT] = ACTIONS(1507), - [anon_sym_PLUS_PIPE] = ACTIONS(1507), - [anon_sym_DASH_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1505), - [anon_sym_SLASH] = ACTIONS(1507), - [anon_sym_PERCENT] = ACTIONS(1507), - [anon_sym_STAR_STAR] = ACTIONS(1505), - [anon_sym_STAR_PERCENT] = ACTIONS(1507), - [anon_sym_STAR_PIPE] = ACTIONS(1507), - [anon_sym_align] = ACTIONS(1505), - [anon_sym_DOT_DOT] = ACTIONS(1505), - [anon_sym_DOT_STAR] = ACTIONS(1505), - [anon_sym_DOT_QMARK] = ACTIONS(1505), - [sym_line_comment] = ACTIONS(95), - }, - [822] = { - [anon_sym_COMMA] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_BANG] = ACTIONS(550), - [anon_sym_COLON] = ACTIONS(552), - [anon_sym_EQ] = ACTIONS(550), - [anon_sym_else] = ACTIONS(552), - [anon_sym_or] = ACTIONS(550), - [anon_sym_and] = ACTIONS(552), - [anon_sym_LBRACE] = ACTIONS(552), - [anon_sym_RBRACE] = ACTIONS(552), - [anon_sym_DOT] = ACTIONS(550), - [anon_sym_LPAREN] = ACTIONS(552), - [anon_sym_RPAREN] = ACTIONS(552), - [anon_sym_LBRACK] = ACTIONS(552), - [anon_sym_RBRACK] = ACTIONS(552), - [anon_sym_linksection] = ACTIONS(552), - [anon_sym_PIPE] = ACTIONS(550), - [anon_sym_STAR] = ACTIONS(550), - [anon_sym_EQ_GT] = ACTIONS(552), - [anon_sym_STAR_EQ] = ACTIONS(552), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(552), - [anon_sym_SLASH_EQ] = ACTIONS(552), - [anon_sym_PERCENT_EQ] = ACTIONS(552), - [anon_sym_PLUS_EQ] = ACTIONS(552), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(552), - [anon_sym_DASH_EQ] = ACTIONS(552), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(552), - [anon_sym_LT_LT_EQ] = ACTIONS(552), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(552), - [anon_sym_GT_GT_EQ] = ACTIONS(552), - [anon_sym_AMP_EQ] = ACTIONS(552), - [anon_sym_CARET_EQ] = ACTIONS(552), - [anon_sym_PIPE_EQ] = ACTIONS(552), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(552), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(552), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(552), - [anon_sym_EQ_EQ] = ACTIONS(552), - [anon_sym_BANG_EQ] = ACTIONS(552), - [anon_sym_LT] = ACTIONS(550), - [anon_sym_GT] = ACTIONS(550), - [anon_sym_LT_EQ] = ACTIONS(552), - [anon_sym_GT_EQ] = ACTIONS(552), - [anon_sym_AMP] = ACTIONS(550), - [anon_sym_CARET] = ACTIONS(550), - [anon_sym_orelse] = ACTIONS(552), - [anon_sym_catch] = ACTIONS(552), - [anon_sym_LT_LT] = ACTIONS(550), - [anon_sym_GT_GT] = ACTIONS(550), - [anon_sym_LT_LT_PIPE] = ACTIONS(550), - [anon_sym_PLUS] = ACTIONS(550), - [anon_sym_DASH] = ACTIONS(550), - [anon_sym_PLUS_PLUS] = ACTIONS(552), - [anon_sym_PLUS_PERCENT] = ACTIONS(550), - [anon_sym_DASH_PERCENT] = ACTIONS(550), - [anon_sym_PLUS_PIPE] = ACTIONS(550), - [anon_sym_DASH_PIPE] = ACTIONS(550), - [anon_sym_PIPE_PIPE] = ACTIONS(552), - [anon_sym_SLASH] = ACTIONS(550), - [anon_sym_PERCENT] = ACTIONS(550), - [anon_sym_STAR_STAR] = ACTIONS(552), - [anon_sym_STAR_PERCENT] = ACTIONS(550), - [anon_sym_STAR_PIPE] = ACTIONS(550), - [anon_sym_align] = ACTIONS(552), - [anon_sym_DOT_DOT] = ACTIONS(552), - [anon_sym_DOT_STAR] = ACTIONS(552), - [anon_sym_DOT_QMARK] = ACTIONS(552), - [sym_line_comment] = ACTIONS(95), - }, - [823] = { - [anon_sym_COMMA] = ACTIONS(1509), - [anon_sym_SEMI] = ACTIONS(1509), - [anon_sym_BANG] = ACTIONS(1511), - [anon_sym_COLON] = ACTIONS(1509), - [anon_sym_EQ] = ACTIONS(1511), - [anon_sym_else] = ACTIONS(1509), - [anon_sym_or] = ACTIONS(1511), - [anon_sym_and] = ACTIONS(1509), - [anon_sym_LBRACE] = ACTIONS(1509), - [anon_sym_RBRACE] = ACTIONS(1509), - [anon_sym_DOT] = ACTIONS(1511), - [anon_sym_LPAREN] = ACTIONS(1509), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1509), - [anon_sym_RBRACK] = ACTIONS(1509), - [anon_sym_linksection] = ACTIONS(1509), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_STAR] = ACTIONS(1511), - [anon_sym_EQ_GT] = ACTIONS(1509), - [anon_sym_STAR_EQ] = ACTIONS(1509), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1509), - [anon_sym_SLASH_EQ] = ACTIONS(1509), - [anon_sym_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_PLUS_EQ] = ACTIONS(1509), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1509), - [anon_sym_DASH_EQ] = ACTIONS(1509), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_EQ] = ACTIONS(1509), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1509), - [anon_sym_GT_GT_EQ] = ACTIONS(1509), - [anon_sym_AMP_EQ] = ACTIONS(1509), - [anon_sym_CARET_EQ] = ACTIONS(1509), - [anon_sym_PIPE_EQ] = ACTIONS(1509), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1509), - [anon_sym_EQ_EQ] = ACTIONS(1509), - [anon_sym_BANG_EQ] = ACTIONS(1509), - [anon_sym_LT] = ACTIONS(1511), - [anon_sym_GT] = ACTIONS(1511), - [anon_sym_LT_EQ] = ACTIONS(1509), - [anon_sym_GT_EQ] = ACTIONS(1509), - [anon_sym_AMP] = ACTIONS(1511), - [anon_sym_CARET] = ACTIONS(1511), - [anon_sym_orelse] = ACTIONS(1509), - [anon_sym_catch] = ACTIONS(1509), - [anon_sym_LT_LT] = ACTIONS(1511), - [anon_sym_GT_GT] = ACTIONS(1511), - [anon_sym_LT_LT_PIPE] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1511), - [anon_sym_DASH] = ACTIONS(1511), - [anon_sym_PLUS_PLUS] = ACTIONS(1509), - [anon_sym_PLUS_PERCENT] = ACTIONS(1511), - [anon_sym_DASH_PERCENT] = ACTIONS(1511), - [anon_sym_PLUS_PIPE] = ACTIONS(1511), - [anon_sym_DASH_PIPE] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1509), - [anon_sym_SLASH] = ACTIONS(1511), - [anon_sym_PERCENT] = ACTIONS(1511), - [anon_sym_STAR_STAR] = ACTIONS(1509), - [anon_sym_STAR_PERCENT] = ACTIONS(1511), - [anon_sym_STAR_PIPE] = ACTIONS(1511), - [anon_sym_align] = ACTIONS(1509), - [anon_sym_DOT_DOT] = ACTIONS(1509), - [anon_sym_DOT_STAR] = ACTIONS(1509), - [anon_sym_DOT_QMARK] = ACTIONS(1509), - [sym_line_comment] = ACTIONS(95), - }, - [824] = { [anon_sym_COMMA] = ACTIONS(1513), [anon_sym_SEMI] = ACTIONS(1513), [anon_sym_BANG] = ACTIONS(1515), @@ -85013,7 +84432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1513), [sym_line_comment] = ACTIONS(95), }, - [825] = { + [816] = { [anon_sym_COMMA] = ACTIONS(1517), [anon_sym_SEMI] = ACTIONS(1517), [anon_sym_BANG] = ACTIONS(1519), @@ -85082,7 +84501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1517), [sym_line_comment] = ACTIONS(95), }, - [826] = { + [817] = { [anon_sym_COMMA] = ACTIONS(1521), [anon_sym_SEMI] = ACTIONS(1521), [anon_sym_BANG] = ACTIONS(1523), @@ -85151,7 +84570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1521), [sym_line_comment] = ACTIONS(95), }, - [827] = { + [818] = { [anon_sym_COMMA] = ACTIONS(1525), [anon_sym_SEMI] = ACTIONS(1525), [anon_sym_BANG] = ACTIONS(1527), @@ -85220,7 +84639,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1525), [sym_line_comment] = ACTIONS(95), }, - [828] = { + [819] = { [anon_sym_COMMA] = ACTIONS(1529), [anon_sym_SEMI] = ACTIONS(1529), [anon_sym_BANG] = ACTIONS(1531), @@ -85289,7 +84708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1529), [sym_line_comment] = ACTIONS(95), }, - [829] = { + [820] = { [anon_sym_COMMA] = ACTIONS(1533), [anon_sym_SEMI] = ACTIONS(1533), [anon_sym_BANG] = ACTIONS(1535), @@ -85358,7 +84777,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1533), [sym_line_comment] = ACTIONS(95), }, - [830] = { + [821] = { + [anon_sym_COMMA] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(516), + [anon_sym_BANG] = ACTIONS(518), + [anon_sym_COLON] = ACTIONS(516), + [anon_sym_EQ] = ACTIONS(518), + [anon_sym_else] = ACTIONS(516), + [anon_sym_or] = ACTIONS(518), + [anon_sym_and] = ACTIONS(516), + [anon_sym_LBRACE] = ACTIONS(516), + [anon_sym_RBRACE] = ACTIONS(516), + [anon_sym_DOT] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(516), + [anon_sym_RPAREN] = ACTIONS(516), + [anon_sym_LBRACK] = ACTIONS(516), + [anon_sym_RBRACK] = ACTIONS(516), + [anon_sym_linksection] = ACTIONS(516), + [anon_sym_PIPE] = ACTIONS(518), + [anon_sym_STAR] = ACTIONS(518), + [anon_sym_EQ_GT] = ACTIONS(516), + [anon_sym_STAR_EQ] = ACTIONS(516), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(516), + [anon_sym_SLASH_EQ] = ACTIONS(516), + [anon_sym_PERCENT_EQ] = ACTIONS(516), + [anon_sym_PLUS_EQ] = ACTIONS(516), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(516), + [anon_sym_DASH_EQ] = ACTIONS(516), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(516), + [anon_sym_LT_LT_EQ] = ACTIONS(516), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(516), + [anon_sym_GT_GT_EQ] = ACTIONS(516), + [anon_sym_AMP_EQ] = ACTIONS(516), + [anon_sym_CARET_EQ] = ACTIONS(516), + [anon_sym_PIPE_EQ] = ACTIONS(516), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(516), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(516), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(516), + [anon_sym_EQ_EQ] = ACTIONS(516), + [anon_sym_BANG_EQ] = ACTIONS(516), + [anon_sym_LT] = ACTIONS(518), + [anon_sym_GT] = ACTIONS(518), + [anon_sym_LT_EQ] = ACTIONS(516), + [anon_sym_GT_EQ] = ACTIONS(516), + [anon_sym_AMP] = ACTIONS(518), + [anon_sym_CARET] = ACTIONS(518), + [anon_sym_orelse] = ACTIONS(516), + [anon_sym_catch] = ACTIONS(516), + [anon_sym_LT_LT] = ACTIONS(518), + [anon_sym_GT_GT] = ACTIONS(518), + [anon_sym_LT_LT_PIPE] = ACTIONS(518), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_PLUS_PLUS] = ACTIONS(516), + [anon_sym_PLUS_PERCENT] = ACTIONS(518), + [anon_sym_DASH_PERCENT] = ACTIONS(518), + [anon_sym_PLUS_PIPE] = ACTIONS(518), + [anon_sym_DASH_PIPE] = ACTIONS(518), + [anon_sym_PIPE_PIPE] = ACTIONS(516), + [anon_sym_SLASH] = ACTIONS(518), + [anon_sym_PERCENT] = ACTIONS(518), + [anon_sym_STAR_STAR] = ACTIONS(516), + [anon_sym_STAR_PERCENT] = ACTIONS(518), + [anon_sym_STAR_PIPE] = ACTIONS(518), + [anon_sym_align] = ACTIONS(516), + [anon_sym_DOT_DOT] = ACTIONS(516), + [anon_sym_DOT_STAR] = ACTIONS(516), + [anon_sym_DOT_QMARK] = ACTIONS(516), + [sym_line_comment] = ACTIONS(95), + }, + [822] = { [anon_sym_COMMA] = ACTIONS(1537), [anon_sym_SEMI] = ACTIONS(1537), [anon_sym_BANG] = ACTIONS(1539), @@ -85427,23 +84915,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_QMARK] = ACTIONS(1537), [sym_line_comment] = ACTIONS(95), }, - [831] = { + [823] = { + [anon_sym_COMMA] = ACTIONS(540), + [anon_sym_SEMI] = ACTIONS(540), + [anon_sym_BANG] = ACTIONS(538), + [anon_sym_COLON] = ACTIONS(540), + [anon_sym_EQ] = ACTIONS(538), + [anon_sym_else] = ACTIONS(540), + [anon_sym_or] = ACTIONS(538), + [anon_sym_and] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(540), + [anon_sym_RBRACE] = ACTIONS(540), + [anon_sym_DOT] = ACTIONS(538), + [anon_sym_LPAREN] = ACTIONS(540), + [anon_sym_RPAREN] = ACTIONS(540), + [anon_sym_LBRACK] = ACTIONS(540), + [anon_sym_RBRACK] = ACTIONS(540), + [anon_sym_linksection] = ACTIONS(540), + [anon_sym_PIPE] = ACTIONS(538), + [anon_sym_STAR] = ACTIONS(538), + [anon_sym_EQ_GT] = ACTIONS(540), + [anon_sym_STAR_EQ] = ACTIONS(540), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(540), + [anon_sym_SLASH_EQ] = ACTIONS(540), + [anon_sym_PERCENT_EQ] = ACTIONS(540), + [anon_sym_PLUS_EQ] = ACTIONS(540), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(540), + [anon_sym_DASH_EQ] = ACTIONS(540), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(540), + [anon_sym_LT_LT_EQ] = ACTIONS(540), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(540), + [anon_sym_GT_GT_EQ] = ACTIONS(540), + [anon_sym_AMP_EQ] = ACTIONS(540), + [anon_sym_CARET_EQ] = ACTIONS(540), + [anon_sym_PIPE_EQ] = ACTIONS(540), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(540), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(540), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(540), + [anon_sym_EQ_EQ] = ACTIONS(540), + [anon_sym_BANG_EQ] = ACTIONS(540), + [anon_sym_LT] = ACTIONS(538), + [anon_sym_GT] = ACTIONS(538), + [anon_sym_LT_EQ] = ACTIONS(540), + [anon_sym_GT_EQ] = ACTIONS(540), + [anon_sym_AMP] = ACTIONS(538), + [anon_sym_CARET] = ACTIONS(538), + [anon_sym_orelse] = ACTIONS(540), + [anon_sym_catch] = ACTIONS(540), + [anon_sym_LT_LT] = ACTIONS(538), + [anon_sym_GT_GT] = ACTIONS(538), + [anon_sym_LT_LT_PIPE] = ACTIONS(538), + [anon_sym_PLUS] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(538), + [anon_sym_PLUS_PLUS] = ACTIONS(540), + [anon_sym_PLUS_PERCENT] = ACTIONS(538), + [anon_sym_DASH_PERCENT] = ACTIONS(538), + [anon_sym_PLUS_PIPE] = ACTIONS(538), + [anon_sym_DASH_PIPE] = ACTIONS(538), + [anon_sym_PIPE_PIPE] = ACTIONS(540), + [anon_sym_SLASH] = ACTIONS(538), + [anon_sym_PERCENT] = ACTIONS(538), + [anon_sym_STAR_STAR] = ACTIONS(540), + [anon_sym_STAR_PERCENT] = ACTIONS(538), + [anon_sym_STAR_PIPE] = ACTIONS(538), + [anon_sym_align] = ACTIONS(540), + [anon_sym_DOT_DOT] = ACTIONS(540), + [anon_sym_DOT_STAR] = ACTIONS(540), + [anon_sym_DOT_QMARK] = ACTIONS(540), + [sym_line_comment] = ACTIONS(95), + }, + [824] = { + [sym_InitList] = STATE(1024), + [sym__ElseTypeExprTail] = STATE(804), [anon_sym_COMMA] = ACTIONS(1541), [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_BANG] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1313), [anon_sym_COLON] = ACTIONS(1541), [anon_sym_EQ] = ACTIONS(1543), [anon_sym_else] = ACTIONS(1541), [anon_sym_or] = ACTIONS(1543), [anon_sym_and] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1545), [anon_sym_RBRACE] = ACTIONS(1541), - [anon_sym_DOT] = ACTIONS(1543), - [anon_sym_LPAREN] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1311), [anon_sym_RPAREN] = ACTIONS(1541), - [anon_sym_LBRACK] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1311), [anon_sym_RBRACK] = ACTIONS(1541), - [anon_sym_linksection] = ACTIONS(1541), [anon_sym_PIPE] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1543), [anon_sym_EQ_GT] = ACTIONS(1541), @@ -85490,561 +85048,1112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR_STAR] = ACTIONS(1541), [anon_sym_STAR_PERCENT] = ACTIONS(1543), [anon_sym_STAR_PIPE] = ACTIONS(1543), - [anon_sym_align] = ACTIONS(1541), [anon_sym_DOT_DOT] = ACTIONS(1541), - [anon_sym_DOT_STAR] = ACTIONS(1541), - [anon_sym_DOT_QMARK] = ACTIONS(1541), + [anon_sym_DOT_STAR] = ACTIONS(1311), + [anon_sym_DOT_QMARK] = ACTIONS(1311), [sym_line_comment] = ACTIONS(95), }, - [832] = { - [anon_sym_COMMA] = ACTIONS(1545), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_BANG] = ACTIONS(1547), - [anon_sym_COLON] = ACTIONS(1545), - [anon_sym_EQ] = ACTIONS(1547), - [anon_sym_else] = ACTIONS(1545), - [anon_sym_or] = ACTIONS(1547), - [anon_sym_and] = ACTIONS(1545), + [825] = { + [sym__ElseTypeExprTail] = STATE(775), + [anon_sym_COMMA] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_EQ] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1309), + [anon_sym_and] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1307), + [anon_sym_RBRACE] = ACTIONS(1307), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1307), + [anon_sym_linksection] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1309), + [anon_sym_STAR] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1307), + [anon_sym_STAR_EQ] = ACTIONS(1307), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1307), + [anon_sym_SLASH_EQ] = ACTIONS(1307), + [anon_sym_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_PLUS_EQ] = ACTIONS(1307), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1307), + [anon_sym_DASH_EQ] = ACTIONS(1307), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1307), + [anon_sym_LT_LT_EQ] = ACTIONS(1307), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1307), + [anon_sym_GT_GT_EQ] = ACTIONS(1307), + [anon_sym_AMP_EQ] = ACTIONS(1307), + [anon_sym_CARET_EQ] = ACTIONS(1307), + [anon_sym_PIPE_EQ] = ACTIONS(1307), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1307), + [anon_sym_EQ_EQ] = ACTIONS(1307), + [anon_sym_BANG_EQ] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1309), + [anon_sym_GT] = ACTIONS(1309), + [anon_sym_LT_EQ] = ACTIONS(1307), + [anon_sym_GT_EQ] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1309), + [anon_sym_CARET] = ACTIONS(1309), + [anon_sym_orelse] = ACTIONS(1307), + [anon_sym_catch] = ACTIONS(1307), + [anon_sym_LT_LT] = ACTIONS(1309), + [anon_sym_GT_GT] = ACTIONS(1309), + [anon_sym_LT_LT_PIPE] = ACTIONS(1309), + [anon_sym_PLUS] = ACTIONS(1309), + [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_PLUS_PLUS] = ACTIONS(1307), + [anon_sym_PLUS_PERCENT] = ACTIONS(1309), + [anon_sym_DASH_PERCENT] = ACTIONS(1309), + [anon_sym_PLUS_PIPE] = ACTIONS(1309), + [anon_sym_DASH_PIPE] = ACTIONS(1309), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_SLASH] = ACTIONS(1309), + [anon_sym_PERCENT] = ACTIONS(1309), + [anon_sym_STAR_STAR] = ACTIONS(1307), + [anon_sym_STAR_PERCENT] = ACTIONS(1309), + [anon_sym_STAR_PIPE] = ACTIONS(1309), + [anon_sym_align] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_STAR] = ACTIONS(1307), + [anon_sym_DOT_QMARK] = ACTIONS(1307), + [sym_line_comment] = ACTIONS(95), + }, + [826] = { + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_SEMI] = ACTIONS(1547), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_COLON] = ACTIONS(1547), + [anon_sym_EQ] = ACTIONS(1549), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_or] = ACTIONS(1549), + [anon_sym_and] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1547), + [anon_sym_LBRACK] = ACTIONS(1547), + [anon_sym_RBRACK] = ACTIONS(1547), + [anon_sym_linksection] = ACTIONS(1547), + [anon_sym_PIPE] = ACTIONS(1549), + [anon_sym_STAR] = ACTIONS(1549), + [anon_sym_EQ_GT] = ACTIONS(1547), + [anon_sym_STAR_EQ] = ACTIONS(1547), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1547), + [anon_sym_SLASH_EQ] = ACTIONS(1547), + [anon_sym_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_PLUS_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1547), + [anon_sym_DASH_EQ] = ACTIONS(1547), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_EQ] = ACTIONS(1547), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1547), + [anon_sym_GT_GT_EQ] = ACTIONS(1547), + [anon_sym_AMP_EQ] = ACTIONS(1547), + [anon_sym_CARET_EQ] = ACTIONS(1547), + [anon_sym_PIPE_EQ] = ACTIONS(1547), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1547), + [anon_sym_EQ_EQ] = ACTIONS(1547), + [anon_sym_BANG_EQ] = ACTIONS(1547), + [anon_sym_LT] = ACTIONS(1549), + [anon_sym_GT] = ACTIONS(1549), + [anon_sym_LT_EQ] = ACTIONS(1547), + [anon_sym_GT_EQ] = ACTIONS(1547), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_CARET] = ACTIONS(1549), + [anon_sym_orelse] = ACTIONS(1547), + [anon_sym_catch] = ACTIONS(1547), + [anon_sym_LT_LT] = ACTIONS(1549), + [anon_sym_GT_GT] = ACTIONS(1549), + [anon_sym_LT_LT_PIPE] = ACTIONS(1549), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1547), + [anon_sym_PLUS_PERCENT] = ACTIONS(1549), + [anon_sym_DASH_PERCENT] = ACTIONS(1549), + [anon_sym_PLUS_PIPE] = ACTIONS(1549), + [anon_sym_DASH_PIPE] = ACTIONS(1549), + [anon_sym_PIPE_PIPE] = ACTIONS(1547), + [anon_sym_SLASH] = ACTIONS(1549), + [anon_sym_PERCENT] = ACTIONS(1549), + [anon_sym_STAR_STAR] = ACTIONS(1547), + [anon_sym_STAR_PERCENT] = ACTIONS(1549), + [anon_sym_STAR_PIPE] = ACTIONS(1549), + [anon_sym_align] = ACTIONS(1547), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_DOT_STAR] = ACTIONS(1547), + [anon_sym_DOT_QMARK] = ACTIONS(1547), + [sym_line_comment] = ACTIONS(95), + }, + [827] = { + [sym_InitList] = STATE(1024), + [sym__ElseTypeExprTail] = STATE(775), + [anon_sym_COMMA] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_COLON] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_or] = ACTIONS(1543), + [anon_sym_and] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1307), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_EQ_GT] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1541), + [anon_sym_GT_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP_EQ] = ACTIONS(1541), + [anon_sym_CARET_EQ] = ACTIONS(1541), + [anon_sym_PIPE_EQ] = ACTIONS(1541), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1541), + [anon_sym_BANG_EQ] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_orelse] = ACTIONS(1541), + [anon_sym_catch] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_LT_LT_PIPE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT] = ACTIONS(1543), + [anon_sym_DASH_PERCENT] = ACTIONS(1543), + [anon_sym_PLUS_PIPE] = ACTIONS(1543), + [anon_sym_DASH_PIPE] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_STAR] = ACTIONS(1541), + [anon_sym_STAR_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_PIPE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_STAR] = ACTIONS(1307), + [anon_sym_DOT_QMARK] = ACTIONS(1307), + [sym_line_comment] = ACTIONS(95), + }, + [828] = { + [anon_sym_COMMA] = ACTIONS(558), + [anon_sym_SEMI] = ACTIONS(558), + [anon_sym_BANG] = ACTIONS(560), + [anon_sym_COLON] = ACTIONS(558), + [anon_sym_EQ] = ACTIONS(560), + [anon_sym_else] = ACTIONS(558), + [anon_sym_or] = ACTIONS(560), + [anon_sym_and] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(558), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_DOT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(558), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(558), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_linksection] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(560), + [anon_sym_STAR] = ACTIONS(560), + [anon_sym_EQ_GT] = ACTIONS(558), + [anon_sym_STAR_EQ] = ACTIONS(558), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(558), + [anon_sym_SLASH_EQ] = ACTIONS(558), + [anon_sym_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_EQ] = ACTIONS(558), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(558), + [anon_sym_DASH_EQ] = ACTIONS(558), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(558), + [anon_sym_LT_LT_EQ] = ACTIONS(558), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(558), + [anon_sym_GT_GT_EQ] = ACTIONS(558), + [anon_sym_AMP_EQ] = ACTIONS(558), + [anon_sym_CARET_EQ] = ACTIONS(558), + [anon_sym_PIPE_EQ] = ACTIONS(558), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(558), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(558), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(558), + [anon_sym_EQ_EQ] = ACTIONS(558), + [anon_sym_BANG_EQ] = ACTIONS(558), + [anon_sym_LT] = ACTIONS(560), + [anon_sym_GT] = ACTIONS(560), + [anon_sym_LT_EQ] = ACTIONS(558), + [anon_sym_GT_EQ] = ACTIONS(558), + [anon_sym_AMP] = ACTIONS(560), + [anon_sym_CARET] = ACTIONS(560), + [anon_sym_orelse] = ACTIONS(558), + [anon_sym_catch] = ACTIONS(558), + [anon_sym_LT_LT] = ACTIONS(560), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LT_LT_PIPE] = ACTIONS(560), + [anon_sym_PLUS] = ACTIONS(560), + [anon_sym_DASH] = ACTIONS(560), + [anon_sym_PLUS_PLUS] = ACTIONS(558), + [anon_sym_PLUS_PERCENT] = ACTIONS(560), + [anon_sym_DASH_PERCENT] = ACTIONS(560), + [anon_sym_PLUS_PIPE] = ACTIONS(560), + [anon_sym_DASH_PIPE] = ACTIONS(560), + [anon_sym_PIPE_PIPE] = ACTIONS(558), + [anon_sym_SLASH] = ACTIONS(560), + [anon_sym_PERCENT] = ACTIONS(560), + [anon_sym_STAR_STAR] = ACTIONS(558), + [anon_sym_STAR_PERCENT] = ACTIONS(560), + [anon_sym_STAR_PIPE] = ACTIONS(560), + [anon_sym_align] = ACTIONS(558), + [anon_sym_DOT_DOT] = ACTIONS(558), + [anon_sym_DOT_STAR] = ACTIONS(558), + [anon_sym_DOT_QMARK] = ACTIONS(558), + [sym_line_comment] = ACTIONS(95), + }, + [829] = { + [sym__ElseTypeExprTail] = STATE(804), + [anon_sym_COMMA] = ACTIONS(1311), + [anon_sym_SEMI] = ACTIONS(1311), + [anon_sym_BANG] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1313), + [anon_sym_else] = ACTIONS(1511), + [anon_sym_or] = ACTIONS(1313), + [anon_sym_and] = ACTIONS(1311), + [anon_sym_LBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_DOT] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1311), + [anon_sym_RPAREN] = ACTIONS(1311), + [anon_sym_LBRACK] = ACTIONS(1311), + [anon_sym_RBRACK] = ACTIONS(1311), + [anon_sym_linksection] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_STAR_EQ] = ACTIONS(1311), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1311), + [anon_sym_SLASH_EQ] = ACTIONS(1311), + [anon_sym_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_PLUS_EQ] = ACTIONS(1311), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1311), + [anon_sym_DASH_EQ] = ACTIONS(1311), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1311), + [anon_sym_LT_LT_EQ] = ACTIONS(1311), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1311), + [anon_sym_GT_GT_EQ] = ACTIONS(1311), + [anon_sym_AMP_EQ] = ACTIONS(1311), + [anon_sym_CARET_EQ] = ACTIONS(1311), + [anon_sym_PIPE_EQ] = ACTIONS(1311), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1311), + [anon_sym_EQ_EQ] = ACTIONS(1311), + [anon_sym_BANG_EQ] = ACTIONS(1311), + [anon_sym_LT] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1313), + [anon_sym_LT_EQ] = ACTIONS(1311), + [anon_sym_GT_EQ] = ACTIONS(1311), + [anon_sym_AMP] = ACTIONS(1313), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_orelse] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1313), + [anon_sym_LT_LT_PIPE] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1313), + [anon_sym_DASH] = ACTIONS(1313), + [anon_sym_PLUS_PLUS] = ACTIONS(1311), + [anon_sym_PLUS_PERCENT] = ACTIONS(1313), + [anon_sym_DASH_PERCENT] = ACTIONS(1313), + [anon_sym_PLUS_PIPE] = ACTIONS(1313), + [anon_sym_DASH_PIPE] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1311), + [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_STAR_STAR] = ACTIONS(1311), + [anon_sym_STAR_PERCENT] = ACTIONS(1313), + [anon_sym_STAR_PIPE] = ACTIONS(1313), + [anon_sym_align] = ACTIONS(1311), + [anon_sym_DOT_DOT] = ACTIONS(1311), + [anon_sym_DOT_STAR] = ACTIONS(1311), + [anon_sym_DOT_QMARK] = ACTIONS(1311), + [sym_line_comment] = ACTIONS(95), + }, + [830] = { + [sym_InitList] = STATE(1024), + [sym__ElseTypeExprTail] = STATE(774), + [anon_sym_COMMA] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1305), + [anon_sym_COLON] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_or] = ACTIONS(1543), + [anon_sym_and] = ACTIONS(1541), [anon_sym_LBRACE] = ACTIONS(1545), - [anon_sym_RBRACE] = ACTIONS(1545), - [anon_sym_DOT] = ACTIONS(1547), - [anon_sym_LPAREN] = ACTIONS(1545), - [anon_sym_RPAREN] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1545), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_linksection] = ACTIONS(1545), - [anon_sym_PIPE] = ACTIONS(1547), - [anon_sym_STAR] = ACTIONS(1547), - [anon_sym_EQ_GT] = ACTIONS(1545), - [anon_sym_STAR_EQ] = ACTIONS(1545), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1545), - [anon_sym_SLASH_EQ] = ACTIONS(1545), - [anon_sym_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_PLUS_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1545), - [anon_sym_DASH_EQ] = ACTIONS(1545), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1545), - [anon_sym_LT_LT_EQ] = ACTIONS(1545), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1545), - [anon_sym_GT_GT_EQ] = ACTIONS(1545), - [anon_sym_AMP_EQ] = ACTIONS(1545), - [anon_sym_CARET_EQ] = ACTIONS(1545), - [anon_sym_PIPE_EQ] = ACTIONS(1545), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1545), - [anon_sym_EQ_EQ] = ACTIONS(1545), - [anon_sym_BANG_EQ] = ACTIONS(1545), - [anon_sym_LT] = ACTIONS(1547), - [anon_sym_GT] = ACTIONS(1547), - [anon_sym_LT_EQ] = ACTIONS(1545), - [anon_sym_GT_EQ] = ACTIONS(1545), - [anon_sym_AMP] = ACTIONS(1547), - [anon_sym_CARET] = ACTIONS(1547), - [anon_sym_orelse] = ACTIONS(1545), - [anon_sym_catch] = ACTIONS(1545), - [anon_sym_LT_LT] = ACTIONS(1547), - [anon_sym_GT_GT] = ACTIONS(1547), - [anon_sym_LT_LT_PIPE] = ACTIONS(1547), - [anon_sym_PLUS] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1547), - [anon_sym_PLUS_PLUS] = ACTIONS(1545), - [anon_sym_PLUS_PERCENT] = ACTIONS(1547), - [anon_sym_DASH_PERCENT] = ACTIONS(1547), - [anon_sym_PLUS_PIPE] = ACTIONS(1547), - [anon_sym_DASH_PIPE] = ACTIONS(1547), - [anon_sym_PIPE_PIPE] = ACTIONS(1545), - [anon_sym_SLASH] = ACTIONS(1547), - [anon_sym_PERCENT] = ACTIONS(1547), - [anon_sym_STAR_STAR] = ACTIONS(1545), - [anon_sym_STAR_PERCENT] = ACTIONS(1547), - [anon_sym_STAR_PIPE] = ACTIONS(1547), - [anon_sym_align] = ACTIONS(1545), - [anon_sym_DOT_DOT] = ACTIONS(1545), - [anon_sym_DOT_STAR] = ACTIONS(1545), - [anon_sym_DOT_QMARK] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1305), + [anon_sym_LPAREN] = ACTIONS(1303), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1303), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_EQ_GT] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1541), + [anon_sym_GT_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP_EQ] = ACTIONS(1541), + [anon_sym_CARET_EQ] = ACTIONS(1541), + [anon_sym_PIPE_EQ] = ACTIONS(1541), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1541), + [anon_sym_BANG_EQ] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_orelse] = ACTIONS(1541), + [anon_sym_catch] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_LT_LT_PIPE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT] = ACTIONS(1543), + [anon_sym_DASH_PERCENT] = ACTIONS(1543), + [anon_sym_PLUS_PIPE] = ACTIONS(1543), + [anon_sym_DASH_PIPE] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_STAR] = ACTIONS(1541), + [anon_sym_STAR_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_PIPE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_STAR] = ACTIONS(1303), + [anon_sym_DOT_QMARK] = ACTIONS(1303), + [sym_line_comment] = ACTIONS(95), + }, + [831] = { + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_SEMI] = ACTIONS(1551), + [anon_sym_BANG] = ACTIONS(1553), + [anon_sym_COLON] = ACTIONS(1551), + [anon_sym_EQ] = ACTIONS(1553), + [anon_sym_else] = ACTIONS(1551), + [anon_sym_or] = ACTIONS(1553), + [anon_sym_and] = ACTIONS(1551), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_RBRACE] = ACTIONS(1551), + [anon_sym_DOT] = ACTIONS(1553), + [anon_sym_LPAREN] = ACTIONS(1551), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1551), + [anon_sym_RBRACK] = ACTIONS(1551), + [anon_sym_linksection] = ACTIONS(1551), + [anon_sym_PIPE] = ACTIONS(1553), + [anon_sym_STAR] = ACTIONS(1553), + [anon_sym_EQ_GT] = ACTIONS(1551), + [anon_sym_STAR_EQ] = ACTIONS(1551), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1551), + [anon_sym_SLASH_EQ] = ACTIONS(1551), + [anon_sym_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_PLUS_EQ] = ACTIONS(1551), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1551), + [anon_sym_DASH_EQ] = ACTIONS(1551), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_EQ] = ACTIONS(1551), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1551), + [anon_sym_GT_GT_EQ] = ACTIONS(1551), + [anon_sym_AMP_EQ] = ACTIONS(1551), + [anon_sym_CARET_EQ] = ACTIONS(1551), + [anon_sym_PIPE_EQ] = ACTIONS(1551), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1551), + [anon_sym_EQ_EQ] = ACTIONS(1551), + [anon_sym_BANG_EQ] = ACTIONS(1551), + [anon_sym_LT] = ACTIONS(1553), + [anon_sym_GT] = ACTIONS(1553), + [anon_sym_LT_EQ] = ACTIONS(1551), + [anon_sym_GT_EQ] = ACTIONS(1551), + [anon_sym_AMP] = ACTIONS(1553), + [anon_sym_CARET] = ACTIONS(1553), + [anon_sym_orelse] = ACTIONS(1551), + [anon_sym_catch] = ACTIONS(1551), + [anon_sym_LT_LT] = ACTIONS(1553), + [anon_sym_GT_GT] = ACTIONS(1553), + [anon_sym_LT_LT_PIPE] = ACTIONS(1553), + [anon_sym_PLUS] = ACTIONS(1553), + [anon_sym_DASH] = ACTIONS(1553), + [anon_sym_PLUS_PLUS] = ACTIONS(1551), + [anon_sym_PLUS_PERCENT] = ACTIONS(1553), + [anon_sym_DASH_PERCENT] = ACTIONS(1553), + [anon_sym_PLUS_PIPE] = ACTIONS(1553), + [anon_sym_DASH_PIPE] = ACTIONS(1553), + [anon_sym_PIPE_PIPE] = ACTIONS(1551), + [anon_sym_SLASH] = ACTIONS(1553), + [anon_sym_PERCENT] = ACTIONS(1553), + [anon_sym_STAR_STAR] = ACTIONS(1551), + [anon_sym_STAR_PERCENT] = ACTIONS(1553), + [anon_sym_STAR_PIPE] = ACTIONS(1553), + [anon_sym_align] = ACTIONS(1551), + [anon_sym_DOT_DOT] = ACTIONS(1551), + [anon_sym_DOT_STAR] = ACTIONS(1551), + [anon_sym_DOT_QMARK] = ACTIONS(1551), + [sym_line_comment] = ACTIONS(95), + }, + [832] = { + [anon_sym_COMMA] = ACTIONS(1555), + [anon_sym_SEMI] = ACTIONS(1555), + [anon_sym_BANG] = ACTIONS(1557), + [anon_sym_COLON] = ACTIONS(1555), + [anon_sym_EQ] = ACTIONS(1557), + [anon_sym_else] = ACTIONS(1555), + [anon_sym_or] = ACTIONS(1557), + [anon_sym_and] = ACTIONS(1555), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_RBRACE] = ACTIONS(1555), + [anon_sym_DOT] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1555), + [anon_sym_linksection] = ACTIONS(1555), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_STAR] = ACTIONS(1557), + [anon_sym_EQ_GT] = ACTIONS(1555), + [anon_sym_STAR_EQ] = ACTIONS(1555), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1555), + [anon_sym_SLASH_EQ] = ACTIONS(1555), + [anon_sym_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1555), + [anon_sym_DASH_EQ] = ACTIONS(1555), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_EQ] = ACTIONS(1555), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1555), + [anon_sym_GT_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP_EQ] = ACTIONS(1555), + [anon_sym_CARET_EQ] = ACTIONS(1555), + [anon_sym_PIPE_EQ] = ACTIONS(1555), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_BANG_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1557), + [anon_sym_GT] = ACTIONS(1557), + [anon_sym_LT_EQ] = ACTIONS(1555), + [anon_sym_GT_EQ] = ACTIONS(1555), + [anon_sym_AMP] = ACTIONS(1557), + [anon_sym_CARET] = ACTIONS(1557), + [anon_sym_orelse] = ACTIONS(1555), + [anon_sym_catch] = ACTIONS(1555), + [anon_sym_LT_LT] = ACTIONS(1557), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_LT_LT_PIPE] = ACTIONS(1557), + [anon_sym_PLUS] = ACTIONS(1557), + [anon_sym_DASH] = ACTIONS(1557), + [anon_sym_PLUS_PLUS] = ACTIONS(1555), + [anon_sym_PLUS_PERCENT] = ACTIONS(1557), + [anon_sym_DASH_PERCENT] = ACTIONS(1557), + [anon_sym_PLUS_PIPE] = ACTIONS(1557), + [anon_sym_DASH_PIPE] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1555), + [anon_sym_SLASH] = ACTIONS(1557), + [anon_sym_PERCENT] = ACTIONS(1557), + [anon_sym_STAR_STAR] = ACTIONS(1555), + [anon_sym_STAR_PERCENT] = ACTIONS(1557), + [anon_sym_STAR_PIPE] = ACTIONS(1557), + [anon_sym_align] = ACTIONS(1555), + [anon_sym_DOT_DOT] = ACTIONS(1555), + [anon_sym_DOT_STAR] = ACTIONS(1555), + [anon_sym_DOT_QMARK] = ACTIONS(1555), [sym_line_comment] = ACTIONS(95), }, [833] = { - [anon_sym_COMMA] = ACTIONS(1549), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_BANG] = ACTIONS(1551), - [anon_sym_COLON] = ACTIONS(1549), - [anon_sym_EQ] = ACTIONS(1551), - [anon_sym_else] = ACTIONS(1549), - [anon_sym_or] = ACTIONS(1551), - [anon_sym_and] = ACTIONS(1549), - [anon_sym_LBRACE] = ACTIONS(1549), - [anon_sym_RBRACE] = ACTIONS(1549), - [anon_sym_DOT] = ACTIONS(1551), - [anon_sym_LPAREN] = ACTIONS(1549), - [anon_sym_RPAREN] = ACTIONS(1549), - [anon_sym_LBRACK] = ACTIONS(1549), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_linksection] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_STAR] = ACTIONS(1551), - [anon_sym_EQ_GT] = ACTIONS(1549), - [anon_sym_STAR_EQ] = ACTIONS(1549), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1549), - [anon_sym_SLASH_EQ] = ACTIONS(1549), - [anon_sym_PERCENT_EQ] = ACTIONS(1549), - [anon_sym_PLUS_EQ] = ACTIONS(1549), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1549), - [anon_sym_DASH_EQ] = ACTIONS(1549), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1549), - [anon_sym_LT_LT_EQ] = ACTIONS(1549), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1549), - [anon_sym_GT_GT_EQ] = ACTIONS(1549), - [anon_sym_AMP_EQ] = ACTIONS(1549), - [anon_sym_CARET_EQ] = ACTIONS(1549), - [anon_sym_PIPE_EQ] = ACTIONS(1549), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1549), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1549), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1549), - [anon_sym_EQ_EQ] = ACTIONS(1549), - [anon_sym_BANG_EQ] = ACTIONS(1549), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_LT_EQ] = ACTIONS(1549), - [anon_sym_GT_EQ] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1551), - [anon_sym_CARET] = ACTIONS(1551), - [anon_sym_orelse] = ACTIONS(1549), - [anon_sym_catch] = ACTIONS(1549), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1551), - [anon_sym_LT_LT_PIPE] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1551), - [anon_sym_DASH] = ACTIONS(1551), - [anon_sym_PLUS_PLUS] = ACTIONS(1549), - [anon_sym_PLUS_PERCENT] = ACTIONS(1551), - [anon_sym_DASH_PERCENT] = ACTIONS(1551), - [anon_sym_PLUS_PIPE] = ACTIONS(1551), - [anon_sym_DASH_PIPE] = ACTIONS(1551), - [anon_sym_PIPE_PIPE] = ACTIONS(1549), - [anon_sym_SLASH] = ACTIONS(1551), - [anon_sym_PERCENT] = ACTIONS(1551), - [anon_sym_STAR_STAR] = ACTIONS(1549), - [anon_sym_STAR_PERCENT] = ACTIONS(1551), - [anon_sym_STAR_PIPE] = ACTIONS(1551), - [anon_sym_align] = ACTIONS(1549), - [anon_sym_DOT_DOT] = ACTIONS(1549), - [anon_sym_DOT_STAR] = ACTIONS(1549), - [anon_sym_DOT_QMARK] = ACTIONS(1549), + [anon_sym_COMMA] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_BANG] = ACTIONS(1561), + [anon_sym_COLON] = ACTIONS(1559), + [anon_sym_EQ] = ACTIONS(1561), + [anon_sym_else] = ACTIONS(1559), + [anon_sym_or] = ACTIONS(1561), + [anon_sym_and] = ACTIONS(1559), + [anon_sym_LBRACE] = ACTIONS(1559), + [anon_sym_RBRACE] = ACTIONS(1559), + [anon_sym_DOT] = ACTIONS(1561), + [anon_sym_LPAREN] = ACTIONS(1559), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_LBRACK] = ACTIONS(1559), + [anon_sym_RBRACK] = ACTIONS(1559), + [anon_sym_linksection] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_STAR] = ACTIONS(1561), + [anon_sym_EQ_GT] = ACTIONS(1559), + [anon_sym_STAR_EQ] = ACTIONS(1559), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1559), + [anon_sym_SLASH_EQ] = ACTIONS(1559), + [anon_sym_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_PLUS_EQ] = ACTIONS(1559), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1559), + [anon_sym_DASH_EQ] = ACTIONS(1559), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_EQ] = ACTIONS(1559), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1559), + [anon_sym_GT_GT_EQ] = ACTIONS(1559), + [anon_sym_AMP_EQ] = ACTIONS(1559), + [anon_sym_CARET_EQ] = ACTIONS(1559), + [anon_sym_PIPE_EQ] = ACTIONS(1559), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1559), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_BANG_EQ] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_LT_EQ] = ACTIONS(1559), + [anon_sym_GT_EQ] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_CARET] = ACTIONS(1561), + [anon_sym_orelse] = ACTIONS(1559), + [anon_sym_catch] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1561), + [anon_sym_LT_LT_PIPE] = ACTIONS(1561), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_PLUS_PLUS] = ACTIONS(1559), + [anon_sym_PLUS_PERCENT] = ACTIONS(1561), + [anon_sym_DASH_PERCENT] = ACTIONS(1561), + [anon_sym_PLUS_PIPE] = ACTIONS(1561), + [anon_sym_DASH_PIPE] = ACTIONS(1561), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_SLASH] = ACTIONS(1561), + [anon_sym_PERCENT] = ACTIONS(1561), + [anon_sym_STAR_STAR] = ACTIONS(1559), + [anon_sym_STAR_PERCENT] = ACTIONS(1561), + [anon_sym_STAR_PIPE] = ACTIONS(1561), + [anon_sym_align] = ACTIONS(1559), + [anon_sym_DOT_DOT] = ACTIONS(1559), + [anon_sym_DOT_STAR] = ACTIONS(1559), + [anon_sym_DOT_QMARK] = ACTIONS(1559), [sym_line_comment] = ACTIONS(95), }, [834] = { - [anon_sym_COMMA] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_BANG] = ACTIONS(1555), - [anon_sym_COLON] = ACTIONS(1553), - [anon_sym_EQ] = ACTIONS(1555), - [anon_sym_else] = ACTIONS(1553), - [anon_sym_or] = ACTIONS(1555), - [anon_sym_and] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1555), - [anon_sym_LPAREN] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_RBRACK] = ACTIONS(1553), - [anon_sym_linksection] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_STAR] = ACTIONS(1555), - [anon_sym_EQ_GT] = ACTIONS(1553), - [anon_sym_STAR_EQ] = ACTIONS(1553), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1553), - [anon_sym_SLASH_EQ] = ACTIONS(1553), - [anon_sym_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_PLUS_EQ] = ACTIONS(1553), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1553), - [anon_sym_DASH_EQ] = ACTIONS(1553), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_EQ] = ACTIONS(1553), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1553), - [anon_sym_GT_GT_EQ] = ACTIONS(1553), - [anon_sym_AMP_EQ] = ACTIONS(1553), - [anon_sym_CARET_EQ] = ACTIONS(1553), - [anon_sym_PIPE_EQ] = ACTIONS(1553), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1553), - [anon_sym_EQ_EQ] = ACTIONS(1553), - [anon_sym_BANG_EQ] = ACTIONS(1553), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_LT_EQ] = ACTIONS(1553), - [anon_sym_GT_EQ] = ACTIONS(1553), - [anon_sym_AMP] = ACTIONS(1555), - [anon_sym_CARET] = ACTIONS(1555), - [anon_sym_orelse] = ACTIONS(1553), - [anon_sym_catch] = ACTIONS(1553), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_LT_LT_PIPE] = ACTIONS(1555), - [anon_sym_PLUS] = ACTIONS(1555), - [anon_sym_DASH] = ACTIONS(1555), - [anon_sym_PLUS_PLUS] = ACTIONS(1553), - [anon_sym_PLUS_PERCENT] = ACTIONS(1555), - [anon_sym_DASH_PERCENT] = ACTIONS(1555), - [anon_sym_PLUS_PIPE] = ACTIONS(1555), - [anon_sym_DASH_PIPE] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(1555), - [anon_sym_PERCENT] = ACTIONS(1555), - [anon_sym_STAR_STAR] = ACTIONS(1553), - [anon_sym_STAR_PERCENT] = ACTIONS(1555), - [anon_sym_STAR_PIPE] = ACTIONS(1555), - [anon_sym_align] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1553), - [anon_sym_DOT_STAR] = ACTIONS(1553), - [anon_sym_DOT_QMARK] = ACTIONS(1553), + [anon_sym_COMMA] = ACTIONS(1563), + [anon_sym_SEMI] = ACTIONS(1563), + [anon_sym_BANG] = ACTIONS(1565), + [anon_sym_COLON] = ACTIONS(1563), + [anon_sym_EQ] = ACTIONS(1565), + [anon_sym_else] = ACTIONS(1563), + [anon_sym_or] = ACTIONS(1565), + [anon_sym_and] = ACTIONS(1563), + [anon_sym_LBRACE] = ACTIONS(1563), + [anon_sym_RBRACE] = ACTIONS(1563), + [anon_sym_DOT] = ACTIONS(1565), + [anon_sym_LPAREN] = ACTIONS(1563), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_LBRACK] = ACTIONS(1563), + [anon_sym_RBRACK] = ACTIONS(1563), + [anon_sym_linksection] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_STAR] = ACTIONS(1565), + [anon_sym_EQ_GT] = ACTIONS(1563), + [anon_sym_STAR_EQ] = ACTIONS(1563), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1563), + [anon_sym_SLASH_EQ] = ACTIONS(1563), + [anon_sym_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_EQ] = ACTIONS(1563), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1563), + [anon_sym_DASH_EQ] = ACTIONS(1563), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_EQ] = ACTIONS(1563), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1563), + [anon_sym_GT_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP_EQ] = ACTIONS(1563), + [anon_sym_CARET_EQ] = ACTIONS(1563), + [anon_sym_PIPE_EQ] = ACTIONS(1563), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1563), + [anon_sym_EQ_EQ] = ACTIONS(1563), + [anon_sym_BANG_EQ] = ACTIONS(1563), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_LT_EQ] = ACTIONS(1563), + [anon_sym_GT_EQ] = ACTIONS(1563), + [anon_sym_AMP] = ACTIONS(1565), + [anon_sym_CARET] = ACTIONS(1565), + [anon_sym_orelse] = ACTIONS(1563), + [anon_sym_catch] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_LT_LT_PIPE] = ACTIONS(1565), + [anon_sym_PLUS] = ACTIONS(1565), + [anon_sym_DASH] = ACTIONS(1565), + [anon_sym_PLUS_PLUS] = ACTIONS(1563), + [anon_sym_PLUS_PERCENT] = ACTIONS(1565), + [anon_sym_DASH_PERCENT] = ACTIONS(1565), + [anon_sym_PLUS_PIPE] = ACTIONS(1565), + [anon_sym_DASH_PIPE] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_SLASH] = ACTIONS(1565), + [anon_sym_PERCENT] = ACTIONS(1565), + [anon_sym_STAR_STAR] = ACTIONS(1563), + [anon_sym_STAR_PERCENT] = ACTIONS(1565), + [anon_sym_STAR_PIPE] = ACTIONS(1565), + [anon_sym_align] = ACTIONS(1563), + [anon_sym_DOT_DOT] = ACTIONS(1563), + [anon_sym_DOT_STAR] = ACTIONS(1563), + [anon_sym_DOT_QMARK] = ACTIONS(1563), [sym_line_comment] = ACTIONS(95), }, [835] = { - [anon_sym_COMMA] = ACTIONS(1557), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_BANG] = ACTIONS(1559), - [anon_sym_COLON] = ACTIONS(1557), - [anon_sym_EQ] = ACTIONS(1559), - [anon_sym_else] = ACTIONS(1557), - [anon_sym_or] = ACTIONS(1559), - [anon_sym_and] = ACTIONS(1557), - [anon_sym_LBRACE] = ACTIONS(1557), - [anon_sym_RBRACE] = ACTIONS(1557), - [anon_sym_DOT] = ACTIONS(1559), - [anon_sym_LPAREN] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1557), - [anon_sym_LBRACK] = ACTIONS(1557), - [anon_sym_RBRACK] = ACTIONS(1557), - [anon_sym_linksection] = ACTIONS(1557), - [anon_sym_PIPE] = ACTIONS(1559), - [anon_sym_STAR] = ACTIONS(1559), - [anon_sym_EQ_GT] = ACTIONS(1557), - [anon_sym_STAR_EQ] = ACTIONS(1557), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1557), - [anon_sym_SLASH_EQ] = ACTIONS(1557), - [anon_sym_PERCENT_EQ] = ACTIONS(1557), - [anon_sym_PLUS_EQ] = ACTIONS(1557), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1557), - [anon_sym_DASH_EQ] = ACTIONS(1557), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1557), - [anon_sym_LT_LT_EQ] = ACTIONS(1557), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1557), - [anon_sym_GT_GT_EQ] = ACTIONS(1557), - [anon_sym_AMP_EQ] = ACTIONS(1557), - [anon_sym_CARET_EQ] = ACTIONS(1557), - [anon_sym_PIPE_EQ] = ACTIONS(1557), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1557), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1557), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_BANG_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1559), - [anon_sym_GT] = ACTIONS(1559), - [anon_sym_LT_EQ] = ACTIONS(1557), - [anon_sym_GT_EQ] = ACTIONS(1557), - [anon_sym_AMP] = ACTIONS(1559), - [anon_sym_CARET] = ACTIONS(1559), - [anon_sym_orelse] = ACTIONS(1557), - [anon_sym_catch] = ACTIONS(1557), - [anon_sym_LT_LT] = ACTIONS(1559), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_LT_LT_PIPE] = ACTIONS(1559), - [anon_sym_PLUS] = ACTIONS(1559), - [anon_sym_DASH] = ACTIONS(1559), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_PLUS_PERCENT] = ACTIONS(1559), - [anon_sym_DASH_PERCENT] = ACTIONS(1559), - [anon_sym_PLUS_PIPE] = ACTIONS(1559), - [anon_sym_DASH_PIPE] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1557), - [anon_sym_SLASH] = ACTIONS(1559), - [anon_sym_PERCENT] = ACTIONS(1559), - [anon_sym_STAR_STAR] = ACTIONS(1557), - [anon_sym_STAR_PERCENT] = ACTIONS(1559), - [anon_sym_STAR_PIPE] = ACTIONS(1559), - [anon_sym_align] = ACTIONS(1557), - [anon_sym_DOT_DOT] = ACTIONS(1557), - [anon_sym_DOT_STAR] = ACTIONS(1557), - [anon_sym_DOT_QMARK] = ACTIONS(1557), + [anon_sym_COMMA] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(552), + [anon_sym_BANG] = ACTIONS(550), + [anon_sym_COLON] = ACTIONS(552), + [anon_sym_EQ] = ACTIONS(550), + [anon_sym_else] = ACTIONS(552), + [anon_sym_or] = ACTIONS(550), + [anon_sym_and] = ACTIONS(552), + [anon_sym_LBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_DOT] = ACTIONS(550), + [anon_sym_LPAREN] = ACTIONS(552), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_LBRACK] = ACTIONS(552), + [anon_sym_RBRACK] = ACTIONS(552), + [anon_sym_linksection] = ACTIONS(552), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_STAR] = ACTIONS(550), + [anon_sym_EQ_GT] = ACTIONS(552), + [anon_sym_STAR_EQ] = ACTIONS(552), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(552), + [anon_sym_SLASH_EQ] = ACTIONS(552), + [anon_sym_PERCENT_EQ] = ACTIONS(552), + [anon_sym_PLUS_EQ] = ACTIONS(552), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(552), + [anon_sym_DASH_EQ] = ACTIONS(552), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(552), + [anon_sym_LT_LT_EQ] = ACTIONS(552), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(552), + [anon_sym_GT_GT_EQ] = ACTIONS(552), + [anon_sym_AMP_EQ] = ACTIONS(552), + [anon_sym_CARET_EQ] = ACTIONS(552), + [anon_sym_PIPE_EQ] = ACTIONS(552), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(552), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(552), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(552), + [anon_sym_EQ_EQ] = ACTIONS(552), + [anon_sym_BANG_EQ] = ACTIONS(552), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_GT] = ACTIONS(550), + [anon_sym_LT_EQ] = ACTIONS(552), + [anon_sym_GT_EQ] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(550), + [anon_sym_CARET] = ACTIONS(550), + [anon_sym_orelse] = ACTIONS(552), + [anon_sym_catch] = ACTIONS(552), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(550), + [anon_sym_LT_LT_PIPE] = ACTIONS(550), + [anon_sym_PLUS] = ACTIONS(550), + [anon_sym_DASH] = ACTIONS(550), + [anon_sym_PLUS_PLUS] = ACTIONS(552), + [anon_sym_PLUS_PERCENT] = ACTIONS(550), + [anon_sym_DASH_PERCENT] = ACTIONS(550), + [anon_sym_PLUS_PIPE] = ACTIONS(550), + [anon_sym_DASH_PIPE] = ACTIONS(550), + [anon_sym_PIPE_PIPE] = ACTIONS(552), + [anon_sym_SLASH] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(550), + [anon_sym_STAR_STAR] = ACTIONS(552), + [anon_sym_STAR_PERCENT] = ACTIONS(550), + [anon_sym_STAR_PIPE] = ACTIONS(550), + [anon_sym_align] = ACTIONS(552), + [anon_sym_DOT_DOT] = ACTIONS(552), + [anon_sym_DOT_STAR] = ACTIONS(552), + [anon_sym_DOT_QMARK] = ACTIONS(552), [sym_line_comment] = ACTIONS(95), }, [836] = { - [anon_sym_COMMA] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_BANG] = ACTIONS(1563), - [anon_sym_COLON] = ACTIONS(1561), - [anon_sym_EQ] = ACTIONS(1563), - [anon_sym_else] = ACTIONS(1561), - [anon_sym_or] = ACTIONS(1563), - [anon_sym_and] = ACTIONS(1561), - [anon_sym_LBRACE] = ACTIONS(1561), - [anon_sym_RBRACE] = ACTIONS(1561), - [anon_sym_DOT] = ACTIONS(1563), - [anon_sym_LPAREN] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1561), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_linksection] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1563), - [anon_sym_STAR] = ACTIONS(1563), - [anon_sym_EQ_GT] = ACTIONS(1561), - [anon_sym_STAR_EQ] = ACTIONS(1561), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1561), - [anon_sym_SLASH_EQ] = ACTIONS(1561), - [anon_sym_PERCENT_EQ] = ACTIONS(1561), - [anon_sym_PLUS_EQ] = ACTIONS(1561), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1561), - [anon_sym_DASH_EQ] = ACTIONS(1561), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1561), - [anon_sym_LT_LT_EQ] = ACTIONS(1561), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1561), - [anon_sym_GT_GT_EQ] = ACTIONS(1561), - [anon_sym_AMP_EQ] = ACTIONS(1561), - [anon_sym_CARET_EQ] = ACTIONS(1561), - [anon_sym_PIPE_EQ] = ACTIONS(1561), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1561), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1561), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_BANG_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1563), - [anon_sym_GT] = ACTIONS(1563), - [anon_sym_LT_EQ] = ACTIONS(1561), - [anon_sym_GT_EQ] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1563), - [anon_sym_CARET] = ACTIONS(1563), - [anon_sym_orelse] = ACTIONS(1561), - [anon_sym_catch] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1563), - [anon_sym_GT_GT] = ACTIONS(1563), - [anon_sym_LT_LT_PIPE] = ACTIONS(1563), - [anon_sym_PLUS] = ACTIONS(1563), - [anon_sym_DASH] = ACTIONS(1563), - [anon_sym_PLUS_PLUS] = ACTIONS(1561), - [anon_sym_PLUS_PERCENT] = ACTIONS(1563), - [anon_sym_DASH_PERCENT] = ACTIONS(1563), - [anon_sym_PLUS_PIPE] = ACTIONS(1563), - [anon_sym_DASH_PIPE] = ACTIONS(1563), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_SLASH] = ACTIONS(1563), - [anon_sym_PERCENT] = ACTIONS(1563), - [anon_sym_STAR_STAR] = ACTIONS(1561), - [anon_sym_STAR_PERCENT] = ACTIONS(1563), - [anon_sym_STAR_PIPE] = ACTIONS(1563), - [anon_sym_align] = ACTIONS(1561), - [anon_sym_DOT_DOT] = ACTIONS(1561), - [anon_sym_DOT_STAR] = ACTIONS(1561), - [anon_sym_DOT_QMARK] = ACTIONS(1561), + [anon_sym_COMMA] = ACTIONS(562), + [anon_sym_SEMI] = ACTIONS(562), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_COLON] = ACTIONS(562), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_else] = ACTIONS(562), + [anon_sym_or] = ACTIONS(564), + [anon_sym_and] = ACTIONS(562), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(562), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_RPAREN] = ACTIONS(562), + [anon_sym_LBRACK] = ACTIONS(562), + [anon_sym_RBRACK] = ACTIONS(562), + [anon_sym_linksection] = ACTIONS(562), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_EQ_GT] = ACTIONS(562), + [anon_sym_STAR_EQ] = ACTIONS(562), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(562), + [anon_sym_SLASH_EQ] = ACTIONS(562), + [anon_sym_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_EQ] = ACTIONS(562), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(562), + [anon_sym_DASH_EQ] = ACTIONS(562), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(562), + [anon_sym_LT_LT_EQ] = ACTIONS(562), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(562), + [anon_sym_GT_GT_EQ] = ACTIONS(562), + [anon_sym_AMP_EQ] = ACTIONS(562), + [anon_sym_CARET_EQ] = ACTIONS(562), + [anon_sym_PIPE_EQ] = ACTIONS(562), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(562), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(562), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(562), + [anon_sym_EQ_EQ] = ACTIONS(562), + [anon_sym_BANG_EQ] = ACTIONS(562), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT_EQ] = ACTIONS(562), + [anon_sym_GT_EQ] = ACTIONS(562), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_orelse] = ACTIONS(562), + [anon_sym_catch] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_LT_LT_PIPE] = ACTIONS(564), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_PLUS_PLUS] = ACTIONS(562), + [anon_sym_PLUS_PERCENT] = ACTIONS(564), + [anon_sym_DASH_PERCENT] = ACTIONS(564), + [anon_sym_PLUS_PIPE] = ACTIONS(564), + [anon_sym_DASH_PIPE] = ACTIONS(564), + [anon_sym_PIPE_PIPE] = ACTIONS(562), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_STAR_STAR] = ACTIONS(562), + [anon_sym_STAR_PERCENT] = ACTIONS(564), + [anon_sym_STAR_PIPE] = ACTIONS(564), + [anon_sym_align] = ACTIONS(562), + [anon_sym_DOT_DOT] = ACTIONS(562), + [anon_sym_DOT_STAR] = ACTIONS(562), + [anon_sym_DOT_QMARK] = ACTIONS(562), [sym_line_comment] = ACTIONS(95), }, [837] = { - [anon_sym_COMMA] = ACTIONS(1565), - [anon_sym_SEMI] = ACTIONS(1565), - [anon_sym_BANG] = ACTIONS(1567), - [anon_sym_COLON] = ACTIONS(1565), - [anon_sym_EQ] = ACTIONS(1567), - [anon_sym_else] = ACTIONS(1565), - [anon_sym_or] = ACTIONS(1567), - [anon_sym_and] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1565), - [anon_sym_RBRACE] = ACTIONS(1565), - [anon_sym_DOT] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1565), - [anon_sym_RPAREN] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1565), - [anon_sym_RBRACK] = ACTIONS(1565), - [anon_sym_linksection] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_STAR] = ACTIONS(1567), - [anon_sym_EQ_GT] = ACTIONS(1565), - [anon_sym_STAR_EQ] = ACTIONS(1565), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1565), - [anon_sym_SLASH_EQ] = ACTIONS(1565), - [anon_sym_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_PLUS_EQ] = ACTIONS(1565), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1565), - [anon_sym_DASH_EQ] = ACTIONS(1565), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_EQ] = ACTIONS(1565), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1565), - [anon_sym_GT_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP_EQ] = ACTIONS(1565), - [anon_sym_CARET_EQ] = ACTIONS(1565), - [anon_sym_PIPE_EQ] = ACTIONS(1565), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1565), - [anon_sym_EQ_EQ] = ACTIONS(1565), - [anon_sym_BANG_EQ] = ACTIONS(1565), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_LT_EQ] = ACTIONS(1565), - [anon_sym_GT_EQ] = ACTIONS(1565), - [anon_sym_AMP] = ACTIONS(1567), - [anon_sym_CARET] = ACTIONS(1567), - [anon_sym_orelse] = ACTIONS(1565), - [anon_sym_catch] = ACTIONS(1565), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(1567), - [anon_sym_LT_LT_PIPE] = ACTIONS(1567), - [anon_sym_PLUS] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_PLUS_PLUS] = ACTIONS(1565), - [anon_sym_PLUS_PERCENT] = ACTIONS(1567), - [anon_sym_DASH_PERCENT] = ACTIONS(1567), - [anon_sym_PLUS_PIPE] = ACTIONS(1567), - [anon_sym_DASH_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_PIPE] = ACTIONS(1565), - [anon_sym_SLASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1567), - [anon_sym_STAR_STAR] = ACTIONS(1565), - [anon_sym_STAR_PERCENT] = ACTIONS(1567), - [anon_sym_STAR_PIPE] = ACTIONS(1567), - [anon_sym_align] = ACTIONS(1565), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_DOT_STAR] = ACTIONS(1565), - [anon_sym_DOT_QMARK] = ACTIONS(1565), + [anon_sym_COMMA] = ACTIONS(536), + [anon_sym_SEMI] = ACTIONS(536), + [anon_sym_BANG] = ACTIONS(534), + [anon_sym_COLON] = ACTIONS(536), + [anon_sym_EQ] = ACTIONS(534), + [anon_sym_else] = ACTIONS(536), + [anon_sym_or] = ACTIONS(534), + [anon_sym_and] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(536), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_DOT] = ACTIONS(534), + [anon_sym_LPAREN] = ACTIONS(536), + [anon_sym_RPAREN] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_linksection] = ACTIONS(536), + [anon_sym_PIPE] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(534), + [anon_sym_EQ_GT] = ACTIONS(536), + [anon_sym_STAR_EQ] = ACTIONS(536), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(536), + [anon_sym_SLASH_EQ] = ACTIONS(536), + [anon_sym_PERCENT_EQ] = ACTIONS(536), + [anon_sym_PLUS_EQ] = ACTIONS(536), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(536), + [anon_sym_DASH_EQ] = ACTIONS(536), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(536), + [anon_sym_LT_LT_EQ] = ACTIONS(536), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(536), + [anon_sym_GT_GT_EQ] = ACTIONS(536), + [anon_sym_AMP_EQ] = ACTIONS(536), + [anon_sym_CARET_EQ] = ACTIONS(536), + [anon_sym_PIPE_EQ] = ACTIONS(536), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(536), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(536), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(536), + [anon_sym_EQ_EQ] = ACTIONS(536), + [anon_sym_BANG_EQ] = ACTIONS(536), + [anon_sym_LT] = ACTIONS(534), + [anon_sym_GT] = ACTIONS(534), + [anon_sym_LT_EQ] = ACTIONS(536), + [anon_sym_GT_EQ] = ACTIONS(536), + [anon_sym_AMP] = ACTIONS(534), + [anon_sym_CARET] = ACTIONS(534), + [anon_sym_orelse] = ACTIONS(536), + [anon_sym_catch] = ACTIONS(536), + [anon_sym_LT_LT] = ACTIONS(534), + [anon_sym_GT_GT] = ACTIONS(534), + [anon_sym_LT_LT_PIPE] = ACTIONS(534), + [anon_sym_PLUS] = ACTIONS(534), + [anon_sym_DASH] = ACTIONS(534), + [anon_sym_PLUS_PLUS] = ACTIONS(536), + [anon_sym_PLUS_PERCENT] = ACTIONS(534), + [anon_sym_DASH_PERCENT] = ACTIONS(534), + [anon_sym_PLUS_PIPE] = ACTIONS(534), + [anon_sym_DASH_PIPE] = ACTIONS(534), + [anon_sym_PIPE_PIPE] = ACTIONS(536), + [anon_sym_SLASH] = ACTIONS(534), + [anon_sym_PERCENT] = ACTIONS(534), + [anon_sym_STAR_STAR] = ACTIONS(536), + [anon_sym_STAR_PERCENT] = ACTIONS(534), + [anon_sym_STAR_PIPE] = ACTIONS(534), + [anon_sym_align] = ACTIONS(536), + [anon_sym_DOT_DOT] = ACTIONS(536), + [anon_sym_DOT_STAR] = ACTIONS(536), + [anon_sym_DOT_QMARK] = ACTIONS(536), [sym_line_comment] = ACTIONS(95), }, [838] = { - [anon_sym_COMMA] = ACTIONS(1569), - [anon_sym_SEMI] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1571), - [anon_sym_COLON] = ACTIONS(1569), - [anon_sym_EQ] = ACTIONS(1571), - [anon_sym_else] = ACTIONS(1569), - [anon_sym_or] = ACTIONS(1571), - [anon_sym_and] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1569), - [anon_sym_RBRACE] = ACTIONS(1569), - [anon_sym_DOT] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1569), - [anon_sym_RBRACK] = ACTIONS(1569), - [anon_sym_linksection] = ACTIONS(1569), - [anon_sym_PIPE] = ACTIONS(1571), - [anon_sym_STAR] = ACTIONS(1571), - [anon_sym_EQ_GT] = ACTIONS(1569), - [anon_sym_STAR_EQ] = ACTIONS(1569), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1569), - [anon_sym_SLASH_EQ] = ACTIONS(1569), - [anon_sym_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_PLUS_EQ] = ACTIONS(1569), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1569), - [anon_sym_DASH_EQ] = ACTIONS(1569), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1569), - [anon_sym_LT_LT_EQ] = ACTIONS(1569), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1569), - [anon_sym_GT_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP_EQ] = ACTIONS(1569), - [anon_sym_CARET_EQ] = ACTIONS(1569), - [anon_sym_PIPE_EQ] = ACTIONS(1569), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_BANG_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1571), - [anon_sym_GT] = ACTIONS(1571), - [anon_sym_LT_EQ] = ACTIONS(1569), - [anon_sym_GT_EQ] = ACTIONS(1569), - [anon_sym_AMP] = ACTIONS(1571), - [anon_sym_CARET] = ACTIONS(1571), - [anon_sym_orelse] = ACTIONS(1569), - [anon_sym_catch] = ACTIONS(1569), - [anon_sym_LT_LT] = ACTIONS(1571), - [anon_sym_GT_GT] = ACTIONS(1571), - [anon_sym_LT_LT_PIPE] = ACTIONS(1571), - [anon_sym_PLUS] = ACTIONS(1571), - [anon_sym_DASH] = ACTIONS(1571), - [anon_sym_PLUS_PLUS] = ACTIONS(1569), - [anon_sym_PLUS_PERCENT] = ACTIONS(1571), - [anon_sym_DASH_PERCENT] = ACTIONS(1571), - [anon_sym_PLUS_PIPE] = ACTIONS(1571), - [anon_sym_DASH_PIPE] = ACTIONS(1571), - [anon_sym_PIPE_PIPE] = ACTIONS(1569), - [anon_sym_SLASH] = ACTIONS(1571), - [anon_sym_PERCENT] = ACTIONS(1571), - [anon_sym_STAR_STAR] = ACTIONS(1569), - [anon_sym_STAR_PERCENT] = ACTIONS(1571), - [anon_sym_STAR_PIPE] = ACTIONS(1571), - [anon_sym_align] = ACTIONS(1569), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_DOT_STAR] = ACTIONS(1569), - [anon_sym_DOT_QMARK] = ACTIONS(1569), + [anon_sym_COMMA] = ACTIONS(1567), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_BANG] = ACTIONS(1569), + [anon_sym_COLON] = ACTIONS(1567), + [anon_sym_EQ] = ACTIONS(1569), + [anon_sym_else] = ACTIONS(1567), + [anon_sym_or] = ACTIONS(1569), + [anon_sym_and] = ACTIONS(1567), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_RBRACE] = ACTIONS(1567), + [anon_sym_DOT] = ACTIONS(1569), + [anon_sym_LPAREN] = ACTIONS(1567), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1567), + [anon_sym_RBRACK] = ACTIONS(1567), + [anon_sym_linksection] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1569), + [anon_sym_STAR] = ACTIONS(1569), + [anon_sym_EQ_GT] = ACTIONS(1567), + [anon_sym_STAR_EQ] = ACTIONS(1567), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1567), + [anon_sym_SLASH_EQ] = ACTIONS(1567), + [anon_sym_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_PLUS_EQ] = ACTIONS(1567), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1567), + [anon_sym_DASH_EQ] = ACTIONS(1567), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1567), + [anon_sym_LT_LT_EQ] = ACTIONS(1567), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1567), + [anon_sym_GT_GT_EQ] = ACTIONS(1567), + [anon_sym_AMP_EQ] = ACTIONS(1567), + [anon_sym_CARET_EQ] = ACTIONS(1567), + [anon_sym_PIPE_EQ] = ACTIONS(1567), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1567), + [anon_sym_EQ_EQ] = ACTIONS(1567), + [anon_sym_BANG_EQ] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1569), + [anon_sym_GT] = ACTIONS(1569), + [anon_sym_LT_EQ] = ACTIONS(1567), + [anon_sym_GT_EQ] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1569), + [anon_sym_CARET] = ACTIONS(1569), + [anon_sym_orelse] = ACTIONS(1567), + [anon_sym_catch] = ACTIONS(1567), + [anon_sym_LT_LT] = ACTIONS(1569), + [anon_sym_GT_GT] = ACTIONS(1569), + [anon_sym_LT_LT_PIPE] = ACTIONS(1569), + [anon_sym_PLUS] = ACTIONS(1569), + [anon_sym_DASH] = ACTIONS(1569), + [anon_sym_PLUS_PLUS] = ACTIONS(1567), + [anon_sym_PLUS_PERCENT] = ACTIONS(1569), + [anon_sym_DASH_PERCENT] = ACTIONS(1569), + [anon_sym_PLUS_PIPE] = ACTIONS(1569), + [anon_sym_DASH_PIPE] = ACTIONS(1569), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_SLASH] = ACTIONS(1569), + [anon_sym_PERCENT] = ACTIONS(1569), + [anon_sym_STAR_STAR] = ACTIONS(1567), + [anon_sym_STAR_PERCENT] = ACTIONS(1569), + [anon_sym_STAR_PIPE] = ACTIONS(1569), + [anon_sym_align] = ACTIONS(1567), + [anon_sym_DOT_DOT] = ACTIONS(1567), + [anon_sym_DOT_STAR] = ACTIONS(1567), + [anon_sym_DOT_QMARK] = ACTIONS(1567), [sym_line_comment] = ACTIONS(95), }, [839] = { - [sym_InitList] = STATE(983), - [anon_sym_COMMA] = ACTIONS(1383), - [anon_sym_SEMI] = ACTIONS(1383), - [anon_sym_BANG] = ACTIONS(1431), - [anon_sym_COLON] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(1385), - [anon_sym_else] = ACTIONS(1383), - [anon_sym_or] = ACTIONS(1385), - [anon_sym_and] = ACTIONS(1383), - [anon_sym_LBRACE] = ACTIONS(1387), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_RPAREN] = ACTIONS(1383), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACK] = ACTIONS(1383), - [anon_sym_PIPE] = ACTIONS(1385), - [anon_sym_STAR] = ACTIONS(1385), - [anon_sym_EQ_GT] = ACTIONS(1383), - [anon_sym_STAR_EQ] = ACTIONS(1383), - [anon_sym_STAR_PIPE_EQ] = ACTIONS(1383), - [anon_sym_SLASH_EQ] = ACTIONS(1383), - [anon_sym_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1383), - [anon_sym_DASH_EQ] = ACTIONS(1383), - [anon_sym_DASH_PIPE_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_EQ] = ACTIONS(1383), - [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1383), - [anon_sym_GT_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP_EQ] = ACTIONS(1383), - [anon_sym_CARET_EQ] = ACTIONS(1383), - [anon_sym_PIPE_EQ] = ACTIONS(1383), - [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1383), - [anon_sym_EQ_EQ] = ACTIONS(1383), - [anon_sym_BANG_EQ] = ACTIONS(1383), - [anon_sym_LT] = ACTIONS(1385), - [anon_sym_GT] = ACTIONS(1385), - [anon_sym_LT_EQ] = ACTIONS(1383), - [anon_sym_GT_EQ] = ACTIONS(1383), - [anon_sym_AMP] = ACTIONS(1385), - [anon_sym_CARET] = ACTIONS(1385), - [anon_sym_orelse] = ACTIONS(1383), - [anon_sym_catch] = ACTIONS(1383), - [anon_sym_LT_LT] = ACTIONS(1385), - [anon_sym_GT_GT] = ACTIONS(1385), - [anon_sym_LT_LT_PIPE] = ACTIONS(1385), - [anon_sym_PLUS] = ACTIONS(1385), - [anon_sym_DASH] = ACTIONS(1385), - [anon_sym_PLUS_PLUS] = ACTIONS(1383), - [anon_sym_PLUS_PERCENT] = ACTIONS(1385), - [anon_sym_DASH_PERCENT] = ACTIONS(1385), - [anon_sym_PLUS_PIPE] = ACTIONS(1385), - [anon_sym_DASH_PIPE] = ACTIONS(1385), - [anon_sym_PIPE_PIPE] = ACTIONS(1383), - [anon_sym_SLASH] = ACTIONS(1385), - [anon_sym_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_STAR] = ACTIONS(1383), - [anon_sym_STAR_PERCENT] = ACTIONS(1385), - [anon_sym_STAR_PIPE] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1383), - [anon_sym_DOT_STAR] = ACTIONS(1429), - [anon_sym_DOT_QMARK] = ACTIONS(1429), + [anon_sym_COMMA] = ACTIONS(1571), + [anon_sym_SEMI] = ACTIONS(1571), + [anon_sym_BANG] = ACTIONS(1573), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_EQ] = ACTIONS(1573), + [anon_sym_else] = ACTIONS(1571), + [anon_sym_or] = ACTIONS(1573), + [anon_sym_and] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_RBRACE] = ACTIONS(1571), + [anon_sym_DOT] = ACTIONS(1573), + [anon_sym_LPAREN] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(1571), + [anon_sym_LBRACK] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(1571), + [anon_sym_linksection] = ACTIONS(1571), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_STAR] = ACTIONS(1573), + [anon_sym_EQ_GT] = ACTIONS(1571), + [anon_sym_STAR_EQ] = ACTIONS(1571), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1571), + [anon_sym_SLASH_EQ] = ACTIONS(1571), + [anon_sym_PERCENT_EQ] = ACTIONS(1571), + [anon_sym_PLUS_EQ] = ACTIONS(1571), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1571), + [anon_sym_DASH_EQ] = ACTIONS(1571), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1571), + [anon_sym_LT_LT_EQ] = ACTIONS(1571), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1571), + [anon_sym_GT_GT_EQ] = ACTIONS(1571), + [anon_sym_AMP_EQ] = ACTIONS(1571), + [anon_sym_CARET_EQ] = ACTIONS(1571), + [anon_sym_PIPE_EQ] = ACTIONS(1571), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1571), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1571), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1571), + [anon_sym_BANG_EQ] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_LT_EQ] = ACTIONS(1571), + [anon_sym_GT_EQ] = ACTIONS(1571), + [anon_sym_AMP] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(1573), + [anon_sym_orelse] = ACTIONS(1571), + [anon_sym_catch] = ACTIONS(1571), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(1573), + [anon_sym_LT_LT_PIPE] = ACTIONS(1573), + [anon_sym_PLUS] = ACTIONS(1573), + [anon_sym_DASH] = ACTIONS(1573), + [anon_sym_PLUS_PLUS] = ACTIONS(1571), + [anon_sym_PLUS_PERCENT] = ACTIONS(1573), + [anon_sym_DASH_PERCENT] = ACTIONS(1573), + [anon_sym_PLUS_PIPE] = ACTIONS(1573), + [anon_sym_DASH_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_PIPE] = ACTIONS(1571), + [anon_sym_SLASH] = ACTIONS(1573), + [anon_sym_PERCENT] = ACTIONS(1573), + [anon_sym_STAR_STAR] = ACTIONS(1571), + [anon_sym_STAR_PERCENT] = ACTIONS(1573), + [anon_sym_STAR_PIPE] = ACTIONS(1573), + [anon_sym_align] = ACTIONS(1571), + [anon_sym_DOT_DOT] = ACTIONS(1571), + [anon_sym_DOT_STAR] = ACTIONS(1571), + [anon_sym_DOT_QMARK] = ACTIONS(1571), + [sym_line_comment] = ACTIONS(95), + }, + [840] = { + [sym_InitList] = STATE(1024), + [anon_sym_COMMA] = ACTIONS(1541), + [anon_sym_SEMI] = ACTIONS(1541), + [anon_sym_BANG] = ACTIONS(1465), + [anon_sym_COLON] = ACTIONS(1541), + [anon_sym_EQ] = ACTIONS(1543), + [anon_sym_else] = ACTIONS(1541), + [anon_sym_or] = ACTIONS(1543), + [anon_sym_and] = ACTIONS(1541), + [anon_sym_LBRACE] = ACTIONS(1545), + [anon_sym_RBRACE] = ACTIONS(1541), + [anon_sym_DOT] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1463), + [anon_sym_RPAREN] = ACTIONS(1541), + [anon_sym_LBRACK] = ACTIONS(1463), + [anon_sym_RBRACK] = ACTIONS(1541), + [anon_sym_PIPE] = ACTIONS(1543), + [anon_sym_STAR] = ACTIONS(1543), + [anon_sym_EQ_GT] = ACTIONS(1541), + [anon_sym_STAR_EQ] = ACTIONS(1541), + [anon_sym_STAR_PIPE_EQ] = ACTIONS(1541), + [anon_sym_SLASH_EQ] = ACTIONS(1541), + [anon_sym_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PIPE_EQ] = ACTIONS(1541), + [anon_sym_DASH_EQ] = ACTIONS(1541), + [anon_sym_DASH_PIPE_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_EQ] = ACTIONS(1541), + [anon_sym_LT_LT_PIPE_EQ] = ACTIONS(1541), + [anon_sym_GT_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP_EQ] = ACTIONS(1541), + [anon_sym_CARET_EQ] = ACTIONS(1541), + [anon_sym_PIPE_EQ] = ACTIONS(1541), + [anon_sym_STAR_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_DASH_PERCENT_EQ] = ACTIONS(1541), + [anon_sym_EQ_EQ] = ACTIONS(1541), + [anon_sym_BANG_EQ] = ACTIONS(1541), + [anon_sym_LT] = ACTIONS(1543), + [anon_sym_GT] = ACTIONS(1543), + [anon_sym_LT_EQ] = ACTIONS(1541), + [anon_sym_GT_EQ] = ACTIONS(1541), + [anon_sym_AMP] = ACTIONS(1543), + [anon_sym_CARET] = ACTIONS(1543), + [anon_sym_orelse] = ACTIONS(1541), + [anon_sym_catch] = ACTIONS(1541), + [anon_sym_LT_LT] = ACTIONS(1543), + [anon_sym_GT_GT] = ACTIONS(1543), + [anon_sym_LT_LT_PIPE] = ACTIONS(1543), + [anon_sym_PLUS] = ACTIONS(1543), + [anon_sym_DASH] = ACTIONS(1543), + [anon_sym_PLUS_PLUS] = ACTIONS(1541), + [anon_sym_PLUS_PERCENT] = ACTIONS(1543), + [anon_sym_DASH_PERCENT] = ACTIONS(1543), + [anon_sym_PLUS_PIPE] = ACTIONS(1543), + [anon_sym_DASH_PIPE] = ACTIONS(1543), + [anon_sym_PIPE_PIPE] = ACTIONS(1541), + [anon_sym_SLASH] = ACTIONS(1543), + [anon_sym_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_STAR] = ACTIONS(1541), + [anon_sym_STAR_PERCENT] = ACTIONS(1543), + [anon_sym_STAR_PIPE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1541), + [anon_sym_DOT_STAR] = ACTIONS(1463), + [anon_sym_DOT_QMARK] = ACTIONS(1463), [sym_line_comment] = ACTIONS(95), }, }; @@ -86053,11 +86162,11 @@ static const uint16_t ts_small_parse_table[] = { [0] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1577), 1, + ACTIONS(1579), 1, anon_sym_else, - STATE(870), 1, + STATE(891), 1, sym__ElseStatementTail, - ACTIONS(1575), 21, + ACTIONS(1577), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86077,9 +86186,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1573), 40, + ACTIONS(1575), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -86123,11 +86232,11 @@ static const uint16_t ts_small_parse_table[] = { [75] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1577), 1, + ACTIONS(1579), 1, anon_sym_else, - STATE(872), 1, + STATE(892), 1, sym__ElseStatementTail, - ACTIONS(1581), 21, + ACTIONS(1583), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86147,9 +86256,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1579), 40, + ACTIONS(1581), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -86193,11 +86302,11 @@ static const uint16_t ts_small_parse_table[] = { [150] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1577), 1, + ACTIONS(1579), 1, anon_sym_else, - STATE(871), 1, + STATE(893), 1, sym__ElseStatementTail, - ACTIONS(1585), 21, + ACTIONS(1587), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -86217,9 +86326,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1583), 40, + ACTIONS(1585), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -86260,153 +86369,268 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [225] = 21, + [225] = 36, + ACTIONS(65), 1, + anon_sym_error, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(73), 1, + anon_sym_switch, + ACTIONS(91), 1, + anon_sym_enum, + ACTIONS(93), 1, + anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1589), 1, - anon_sym_EQ, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(993), 1, - sym__ElseExprTail, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1587), 25, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [331] = 22, + ACTIONS(97), 1, + anon_sym_SQUOTE, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(109), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(111), 1, + anon_sym_AT, + ACTIONS(285), 1, + anon_sym_DOT, + ACTIONS(307), 1, + anon_sym_fn, + ACTIONS(866), 1, + anon_sym_comptime, + ACTIONS(868), 1, + anon_sym_inline, + ACTIONS(876), 1, + anon_sym_if, + ACTIONS(878), 1, + anon_sym_while, + ACTIONS(880), 1, + anon_sym_for, + STATE(551), 1, + sym_IfPrefix, + STATE(568), 1, + sym_WhilePrefix, + STATE(576), 1, + sym_ForPrefix, + STATE(780), 1, + sym__ContainerDeclAuto, + STATE(802), 1, + sym_LoopTypeExpr, + STATE(1293), 1, + sym_IDENTIFIER, + STATE(1930), 1, + sym_BlockLabel, + STATE(2296), 1, + sym_BUILTINIDENTIFIER, + STATE(2334), 1, + sym_ContainerDeclType, + ACTIONS(39), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(89), 2, + anon_sym_struct, + anon_sym_opaque, + ACTIONS(101), 2, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + ACTIONS(103), 2, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(801), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + ACTIONS(99), 4, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + ACTIONS(1589), 7, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + STATE(722), 13, + sym_FnProto, + sym__PrimaryTypeExpr, + sym_ContainerDecl, + sym_ErrorSetDecl, + sym_GroupedExpr, + sym_IfTypeExpr, + sym_LabeledTypeExpr, + sym_SwitchExpr, + sym_CHAR_LITERAL, + sym_FLOAT, + sym_INTEGER, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [361] = 36, + ACTIONS(91), 1, + anon_sym_enum, + ACTIONS(93), 1, + anon_sym_union, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(147), 1, + anon_sym_DOT, + ACTIONS(149), 1, + anon_sym_error, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_switch, + ACTIONS(163), 1, + anon_sym_SQUOTE, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(173), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(792), 1, + anon_sym_fn, + ACTIONS(794), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(796), 1, + anon_sym_AT, + ACTIONS(876), 1, + anon_sym_if, + ACTIONS(878), 1, + anon_sym_while, + ACTIONS(880), 1, + anon_sym_for, + ACTIONS(976), 1, + anon_sym_comptime, + ACTIONS(978), 1, + anon_sym_inline, + STATE(567), 1, + sym_IfPrefix, + STATE(569), 1, + sym_WhilePrefix, + STATE(571), 1, + sym_ForPrefix, + STATE(885), 1, + sym_IDENTIFIER, + STATE(1111), 1, + sym__ContainerDeclAuto, + STATE(1113), 1, + sym_LoopTypeExpr, + STATE(1938), 1, + sym_BlockLabel, + STATE(2269), 1, + sym_BUILTINIDENTIFIER, + STATE(2366), 1, + sym_ContainerDeclType, + ACTIONS(89), 2, + anon_sym_struct, + anon_sym_opaque, + ACTIONS(155), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(167), 2, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + ACTIONS(169), 2, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + STATE(940), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1112), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + ACTIONS(165), 4, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + ACTIONS(1591), 7, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + STATE(921), 13, + sym_FnProto, + sym__PrimaryTypeExpr, + sym_ContainerDecl, + sym_ErrorSetDecl, + sym_GroupedExpr, + sym_IfTypeExpr, + sym_LabeledTypeExpr, + sym_SwitchExpr, + sym_CHAR_LITERAL, + sym_FLOAT, + sym_INTEGER, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [497] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1589), 1, + ACTIONS(1595), 1, anon_sym_EQ, - ACTIONS(1591), 1, + ACTIONS(1597), 1, + anon_sym_else, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1615), 1, - anon_sym_else, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(993), 1, + STATE(998), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1587), 24, + ACTIONS(1593), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RBRACE, @@ -86431,69 +86655,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, anon_sym_DOT_DOT, - [439] = 21, + [605] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1597), 1, + anon_sym_else, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1625), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(994), 1, + STATE(1010), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1617), 25, + ACTIONS(1623), 24, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_else, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -86516,7 +86741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, anon_sym_DOT_DOT, - [545] = 36, + [713] = 36, + ACTIONS(43), 1, + anon_sym_fn, ACTIONS(65), 1, anon_sym_error, ACTIONS(71), 1, @@ -86534,44 +86761,40 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 1, anon_sym_DQUOTE, ACTIONS(107), 1, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, ACTIONS(111), 1, anon_sym_AT, - ACTIONS(301), 1, + ACTIONS(285), 1, anon_sym_DOT, - ACTIONS(309), 1, - anon_sym_fn, - ACTIONS(866), 1, - anon_sym_comptime, - ACTIONS(868), 1, - anon_sym_inline, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - STATE(645), 1, + ACTIONS(940), 1, + anon_sym_comptime, + ACTIONS(942), 1, + anon_sym_inline, + STATE(577), 1, sym_ForPrefix, - STATE(650), 1, + STATE(578), 1, sym_WhilePrefix, - STATE(652), 1, + STATE(579), 1, sym_IfPrefix, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(715), 1, + sym_IDENTIFIER, + STATE(780), 1, sym__ContainerDeclAuto, STATE(802), 1, sym_LoopTypeExpr, - STATE(1286), 1, - sym_IDENTIFIER, - STATE(1923), 1, + STATE(1936), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2334), 1, sym_ContainerDeclType, ACTIONS(39), 2, anon_sym_extern, @@ -86585,6 +86808,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, @@ -86593,7 +86819,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1621), 7, + ACTIONS(1589), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -86601,7 +86827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(722), 14, + STATE(722), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -86614,86 +86840,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [681] = 36, - ACTIONS(65), 1, - anon_sym_error, - ACTIONS(71), 1, - anon_sym_LPAREN, - ACTIONS(73), 1, - anon_sym_switch, + [849] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(97), 1, - anon_sym_SQUOTE, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(109), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(117), 1, - anon_sym_fn, - ACTIONS(301), 1, - anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(924), 1, + ACTIONS(986), 1, anon_sym_comptime, - ACTIONS(926), 1, + ACTIONS(990), 1, anon_sym_inline, - STATE(660), 1, + ACTIONS(992), 1, + anon_sym_fn, + ACTIONS(998), 1, + anon_sym_DOT, + ACTIONS(1000), 1, + anon_sym_error, + ACTIONS(1006), 1, + anon_sym_LPAREN, + ACTIONS(1008), 1, + anon_sym_switch, + ACTIONS(1010), 1, + anon_sym_SQUOTE, + ACTIONS(1018), 1, + anon_sym_DQUOTE, + ACTIONS(1020), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(1022), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(1024), 1, + anon_sym_AT, + STATE(672), 1, sym_IfPrefix, - STATE(674), 1, + STATE(673), 1, sym_WhilePrefix, - STATE(677), 1, + STATE(674), 1, sym_ForPrefix, - STATE(721), 1, + STATE(1623), 1, sym_IDENTIFIER, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, - sym__ContainerDeclAuto, - STATE(802), 1, + STATE(1786), 1, sym_LoopTypeExpr, + STATE(1843), 1, + sym__ContainerDeclAuto, STATE(1929), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2286), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2377), 1, sym_ContainerDeclType, - ACTIONS(39), 2, - anon_sym_extern, - anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(101), 2, + ACTIONS(988), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(1014), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(103), 2, + ACTIONS(1016), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(801), 2, + STATE(1646), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1778), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(99), 4, + ACTIONS(1012), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1621), 7, + ACTIONS(1627), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -86701,7 +86927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(722), 14, + STATE(1627), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -86714,86 +86940,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [817] = 36, - ACTIONS(43), 1, - anon_sym_fn, - ACTIONS(65), 1, - anon_sym_error, - ACTIONS(71), 1, - anon_sym_LPAREN, - ACTIONS(73), 1, - anon_sym_switch, + [985] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(97), 1, - anon_sym_SQUOTE, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(109), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(111), 1, - anon_sym_AT, - ACTIONS(301), 1, - anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(938), 1, + ACTIONS(884), 1, anon_sym_comptime, - ACTIONS(940), 1, + ACTIONS(888), 1, anon_sym_inline, - STATE(576), 1, + ACTIONS(890), 1, + anon_sym_fn, + ACTIONS(896), 1, + anon_sym_DOT, + ACTIONS(898), 1, + anon_sym_error, + ACTIONS(904), 1, + anon_sym_LPAREN, + ACTIONS(906), 1, + anon_sym_switch, + ACTIONS(908), 1, + anon_sym_SQUOTE, + ACTIONS(916), 1, + anon_sym_DQUOTE, + ACTIONS(918), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(920), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(922), 1, + anon_sym_AT, + STATE(548), 1, sym_ForPrefix, - STATE(577), 1, - sym_WhilePrefix, - STATE(578), 1, + STATE(550), 1, sym_IfPrefix, - STATE(718), 1, + STATE(667), 1, + sym_WhilePrefix, + STATE(1620), 1, sym_IDENTIFIER, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, - sym__ContainerDeclAuto, - STATE(802), 1, + STATE(1691), 1, sym_LoopTypeExpr, - STATE(1933), 1, + STATE(1714), 1, + sym__ContainerDeclAuto, + STATE(1931), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2271), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2351), 1, sym_ContainerDeclType, - ACTIONS(39), 2, - anon_sym_extern, - anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(101), 2, + ACTIONS(886), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(912), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(103), 2, + ACTIONS(914), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(801), 2, + STATE(1635), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1715), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(99), 4, + ACTIONS(910), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1623), 7, + ACTIONS(1629), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -86801,7 +87027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(715), 14, + STATE(1622), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -86814,86 +87040,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [953] = 36, - ACTIONS(65), 1, - anon_sym_error, - ACTIONS(71), 1, - anon_sym_LPAREN, - ACTIONS(73), 1, - anon_sym_switch, + [1121] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(97), 1, + ACTIONS(147), 1, + anon_sym_DOT, + ACTIONS(149), 1, + anon_sym_error, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(159), 1, + anon_sym_switch, + ACTIONS(163), 1, anon_sym_SQUOTE, - ACTIONS(105), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(109), 1, + ACTIONS(173), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(792), 1, + anon_sym_fn, + ACTIONS(794), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(111), 1, + ACTIONS(796), 1, anon_sym_AT, - ACTIONS(301), 1, - anon_sym_DOT, - ACTIONS(309), 1, - anon_sym_fn, - ACTIONS(866), 1, - anon_sym_comptime, - ACTIONS(868), 1, - anon_sym_inline, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - STATE(645), 1, - sym_ForPrefix, - STATE(650), 1, - sym_WhilePrefix, - STATE(652), 1, + ACTIONS(976), 1, + anon_sym_comptime, + ACTIONS(978), 1, + anon_sym_inline, + STATE(567), 1, sym_IfPrefix, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(569), 1, + sym_WhilePrefix, + STATE(571), 1, + sym_ForPrefix, + STATE(895), 1, + sym_IDENTIFIER, + STATE(1111), 1, sym__ContainerDeclAuto, - STATE(802), 1, + STATE(1113), 1, sym_LoopTypeExpr, - STATE(1298), 1, - sym_IDENTIFIER, - STATE(1923), 1, + STATE(1938), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2269), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2366), 1, sym_ContainerDeclType, - ACTIONS(39), 2, - anon_sym_extern, - anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(101), 2, + ACTIONS(155), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(167), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(103), 2, + ACTIONS(169), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(801), 2, + STATE(940), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1112), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(99), 4, + ACTIONS(165), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1623), 7, + ACTIONS(1631), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -86901,7 +87127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(715), 14, + STATE(919), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -86914,68 +87140,152 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1089] = 21, + [1257] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1627), 1, + ACTIONS(1625), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, + STATE(1010), 1, + sym__ElseExprTail, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1623), 25, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [1363] = 21, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1595), 1, + anon_sym_EQ, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + STATE(216), 1, sym_MultiplyOp, - STATE(995), 1, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + STATE(998), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1625), 25, + ACTIONS(1593), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, @@ -87001,32 +87311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, anon_sym_DOT_DOT, - [1195] = 36, + [1469] = 36, + ACTIONS(65), 1, + anon_sym_error, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(73), 1, + anon_sym_switch, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(223), 1, - anon_sym_fn, - ACTIONS(241), 1, - anon_sym_error, - ACTIONS(247), 1, - anon_sym_LPAREN, - ACTIONS(249), 1, - anon_sym_switch, - ACTIONS(253), 1, + ACTIONS(97), 1, anon_sym_SQUOTE, - ACTIONS(261), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(263), 1, - aux_sym_LINESTRING_token1, - ACTIONS(265), 1, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(267), 1, + ACTIONS(111), 1, anon_sym_AT, - ACTIONS(578), 1, + ACTIONS(273), 1, + anon_sym_fn, + ACTIONS(285), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -87034,51 +87344,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(944), 1, + ACTIONS(934), 1, anon_sym_comptime, - ACTIONS(946), 1, + ACTIONS(936), 1, anon_sym_inline, - STATE(634), 1, + STATE(558), 1, + sym_ForPrefix, + STATE(591), 1, + sym_WhilePrefix, + STATE(592), 1, sym_IfPrefix, - STATE(635), 1, - sym_WhilePrefix, - STATE(636), 1, - sym_ForPrefix, - STATE(1277), 1, - sym_IDENTIFIER, - STATE(1330), 1, - aux_sym_LINESTRING_repeat1, - STATE(1384), 1, - sym_LoopTypeExpr, - STATE(1387), 1, + STATE(780), 1, sym__ContainerDeclAuto, - STATE(1930), 1, + STATE(802), 1, + sym_LoopTypeExpr, + STATE(1288), 1, + sym_IDENTIFIER, + STATE(1937), 1, sym_BlockLabel, - STATE(2298), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2364), 1, + STATE(2334), 1, sym_ContainerDeclType, + ACTIONS(39), 2, + anon_sym_extern, + anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(219), 2, - anon_sym_extern, - anon_sym_packed, - ACTIONS(257), 2, + ACTIONS(101), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(259), 2, + ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1385), 2, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(255), 4, + ACTIONS(99), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1629), 7, + ACTIONS(1633), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87086,7 +87397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(1292), 14, + STATE(718), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87099,9 +87410,93 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1331] = 36, + [1605] = 21, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1637), 1, + anon_sym_EQ, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + STATE(1008), 1, + sym__ElseExprTail, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1635), 25, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [1711] = 36, ACTIONS(65), 1, anon_sym_error, ACTIONS(71), 1, @@ -87119,14 +87514,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 1, anon_sym_DQUOTE, ACTIONS(107), 1, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, ACTIONS(111), 1, anon_sym_AT, - ACTIONS(289), 1, + ACTIONS(273), 1, anon_sym_fn, - ACTIONS(301), 1, + ACTIONS(285), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -87134,29 +87529,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(930), 1, + ACTIONS(934), 1, anon_sym_comptime, - ACTIONS(932), 1, + ACTIONS(936), 1, anon_sym_inline, - STATE(561), 1, + STATE(558), 1, sym_ForPrefix, - STATE(562), 1, + STATE(591), 1, sym_WhilePrefix, - STATE(563), 1, + STATE(592), 1, sym_IfPrefix, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(780), 1, sym__ContainerDeclAuto, STATE(802), 1, sym_LoopTypeExpr, - STATE(1286), 1, + STATE(1293), 1, sym_IDENTIFIER, - STATE(1925), 1, + STATE(1937), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2334), 1, sym_ContainerDeclType, ACTIONS(39), 2, anon_sym_extern, @@ -87170,6 +87563,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, @@ -87178,7 +87574,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1621), 7, + ACTIONS(1589), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87186,7 +87582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(722), 14, + STATE(722), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87199,86 +87595,272 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1467] = 36, + [1847] = 22, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1597), 1, + anon_sym_else, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1637), 1, + anon_sym_EQ, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + STATE(1008), 1, + sym__ElseExprTail, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1635), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [1955] = 36, + ACTIONS(65), 1, + anon_sym_error, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(73), 1, + anon_sym_switch, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(189), 1, + ACTIONS(97), 1, + anon_sym_SQUOTE, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(109), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(111), 1, + anon_sym_AT, + ACTIONS(285), 1, anon_sym_DOT, - ACTIONS(191), 1, + ACTIONS(307), 1, + anon_sym_fn, + ACTIONS(866), 1, + anon_sym_comptime, + ACTIONS(868), 1, + anon_sym_inline, + ACTIONS(876), 1, + anon_sym_if, + ACTIONS(878), 1, + anon_sym_while, + ACTIONS(880), 1, + anon_sym_for, + STATE(551), 1, + sym_IfPrefix, + STATE(568), 1, + sym_WhilePrefix, + STATE(576), 1, + sym_ForPrefix, + STATE(780), 1, + sym__ContainerDeclAuto, + STATE(802), 1, + sym_LoopTypeExpr, + STATE(1288), 1, + sym_IDENTIFIER, + STATE(1930), 1, + sym_BlockLabel, + STATE(2296), 1, + sym_BUILTINIDENTIFIER, + STATE(2334), 1, + sym_ContainerDeclType, + ACTIONS(39), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(89), 2, + anon_sym_struct, + anon_sym_opaque, + ACTIONS(101), 2, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + ACTIONS(103), 2, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(801), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + ACTIONS(99), 4, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + ACTIONS(1633), 7, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + STATE(718), 13, + sym_FnProto, + sym__PrimaryTypeExpr, + sym_ContainerDecl, + sym_ErrorSetDecl, + sym_GroupedExpr, + sym_IfTypeExpr, + sym_LabeledTypeExpr, + sym_SwitchExpr, + sym_CHAR_LITERAL, + sym_FLOAT, + sym_INTEGER, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [2091] = 36, + ACTIONS(91), 1, + anon_sym_enum, + ACTIONS(93), 1, + anon_sym_union, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(241), 1, anon_sym_error, - ACTIONS(199), 1, + ACTIONS(247), 1, anon_sym_LPAREN, - ACTIONS(201), 1, + ACTIONS(249), 1, anon_sym_switch, - ACTIONS(205), 1, + ACTIONS(253), 1, anon_sym_SQUOTE, - ACTIONS(213), 1, + ACTIONS(261), 1, anon_sym_DQUOTE, - ACTIONS(215), 1, - aux_sym_LINESTRING_token1, - ACTIONS(702), 1, - anon_sym_fn, - ACTIONS(704), 1, + ACTIONS(263), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(265), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(706), 1, + ACTIONS(267), 1, anon_sym_AT, + ACTIONS(291), 1, + anon_sym_fn, + ACTIONS(578), 1, + anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(992), 1, + ACTIONS(1030), 1, anon_sym_comptime, - ACTIONS(994), 1, + ACTIONS(1032), 1, anon_sym_inline, - STATE(575), 1, - sym_ForPrefix, - STATE(582), 1, - sym_WhilePrefix, - STATE(583), 1, + STATE(611), 1, sym_IfPrefix, - STATE(905), 1, + STATE(614), 1, + sym_WhilePrefix, + STATE(616), 1, + sym_ForPrefix, + STATE(1280), 1, sym_IDENTIFIER, - STATE(985), 1, - aux_sym_LINESTRING_repeat1, - STATE(1114), 1, + STATE(1378), 1, sym__ContainerDeclAuto, - STATE(1139), 1, + STATE(1384), 1, sym_LoopTypeExpr, - STATE(1928), 1, + STATE(1932), 1, sym_BlockLabel, - STATE(2280), 1, + STATE(2311), 1, sym_BUILTINIDENTIFIER, - STATE(2320), 1, + STATE(2376), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(197), 2, + ACTIONS(219), 2, anon_sym_extern, anon_sym_packed, - ACTIONS(209), 2, + ACTIONS(257), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(211), 2, + ACTIONS(259), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1200), 2, + STATE(1313), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(207), 4, + ACTIONS(255), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1631), 7, + ACTIONS(1639), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87286,7 +87868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(944), 14, + STATE(1292), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87299,9 +87881,8 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1603] = 36, + [2227] = 36, ACTIONS(65), 1, anon_sym_error, ACTIONS(71), 1, @@ -87319,14 +87900,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 1, anon_sym_DQUOTE, ACTIONS(107), 1, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, ACTIONS(111), 1, anon_sym_AT, - ACTIONS(289), 1, + ACTIONS(117), 1, anon_sym_fn, - ACTIONS(301), 1, + ACTIONS(285), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -87334,29 +87915,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(930), 1, + ACTIONS(926), 1, anon_sym_comptime, - ACTIONS(932), 1, + ACTIONS(928), 1, anon_sym_inline, - STATE(561), 1, - sym_ForPrefix, - STATE(562), 1, - sym_WhilePrefix, - STATE(563), 1, + STATE(680), 1, sym_IfPrefix, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(693), 1, + sym_WhilePrefix, + STATE(695), 1, + sym_ForPrefix, + STATE(715), 1, + sym_IDENTIFIER, + STATE(780), 1, sym__ContainerDeclAuto, STATE(802), 1, sym_LoopTypeExpr, - STATE(1298), 1, - sym_IDENTIFIER, - STATE(1925), 1, + STATE(1935), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2334), 1, sym_ContainerDeclType, ACTIONS(39), 2, anon_sym_extern, @@ -87370,6 +87949,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, @@ -87378,7 +87960,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1623), 7, + ACTIONS(1589), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87386,7 +87968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(715), 14, + STATE(722), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87399,17 +87981,14 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1739] = 36, + [2363] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(223), 1, - anon_sym_fn, ACTIONS(241), 1, anon_sym_error, ACTIONS(247), 1, @@ -87421,11 +88000,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(261), 1, anon_sym_DQUOTE, ACTIONS(263), 1, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, ACTIONS(265), 1, aux_sym_IDENTIFIER_token1, ACTIONS(267), 1, anon_sym_AT, + ACTIONS(291), 1, + anon_sym_fn, ACTIONS(578), 1, anon_sym_DOT, ACTIONS(876), 1, @@ -87434,29 +88015,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(944), 1, + ACTIONS(1030), 1, anon_sym_comptime, - ACTIONS(946), 1, + ACTIONS(1032), 1, anon_sym_inline, - STATE(634), 1, + STATE(611), 1, sym_IfPrefix, - STATE(635), 1, + STATE(614), 1, sym_WhilePrefix, - STATE(636), 1, + STATE(616), 1, sym_ForPrefix, - STATE(1280), 1, + STATE(1283), 1, sym_IDENTIFIER, - STATE(1330), 1, - aux_sym_LINESTRING_repeat1, + STATE(1378), 1, + sym__ContainerDeclAuto, STATE(1384), 1, sym_LoopTypeExpr, - STATE(1387), 1, - sym__ContainerDeclAuto, - STATE(1930), 1, + STATE(1932), 1, sym_BlockLabel, - STATE(2298), 1, + STATE(2311), 1, sym_BUILTINIDENTIFIER, - STATE(2364), 1, + STATE(2376), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, @@ -87470,7 +88049,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(259), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1385), 2, + STATE(1313), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, ACTIONS(255), 4, @@ -87478,7 +88060,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1633), 7, + ACTIONS(1641), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87486,7 +88068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(1302), 14, + STATE(1306), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87499,86 +88081,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [1875] = 36, + [2499] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(876), 1, - anon_sym_if, - ACTIONS(878), 1, - anon_sym_while, - ACTIONS(880), 1, - anon_sym_for, - ACTIONS(884), 1, - anon_sym_comptime, - ACTIONS(888), 1, - anon_sym_inline, - ACTIONS(890), 1, + ACTIONS(223), 1, anon_sym_fn, - ACTIONS(896), 1, - anon_sym_DOT, - ACTIONS(898), 1, + ACTIONS(241), 1, anon_sym_error, - ACTIONS(904), 1, + ACTIONS(247), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(249), 1, anon_sym_switch, - ACTIONS(908), 1, + ACTIONS(253), 1, anon_sym_SQUOTE, - ACTIONS(916), 1, + ACTIONS(261), 1, anon_sym_DQUOTE, - ACTIONS(918), 1, - aux_sym_LINESTRING_token1, - ACTIONS(920), 1, + ACTIONS(263), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(265), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(922), 1, + ACTIONS(267), 1, anon_sym_AT, - STATE(670), 1, + ACTIONS(578), 1, + anon_sym_DOT, + ACTIONS(876), 1, + anon_sym_if, + ACTIONS(878), 1, + anon_sym_while, + ACTIONS(880), 1, + anon_sym_for, + ACTIONS(970), 1, + anon_sym_comptime, + ACTIONS(972), 1, + anon_sym_inline, + STATE(634), 1, sym_IfPrefix, - STATE(671), 1, + STATE(635), 1, sym_WhilePrefix, - STATE(672), 1, + STATE(636), 1, sym_ForPrefix, - STATE(1621), 1, + STATE(1283), 1, sym_IDENTIFIER, - STATE(1678), 1, - aux_sym_LINESTRING_repeat1, - STATE(1781), 1, + STATE(1378), 1, sym__ContainerDeclAuto, - STATE(1802), 1, + STATE(1384), 1, sym_LoopTypeExpr, - STATE(1926), 1, + STATE(1939), 1, sym_BlockLabel, - STATE(2293), 1, + STATE(2311), 1, sym_BUILTINIDENTIFIER, - STATE(2379), 1, + STATE(2376), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(886), 2, + ACTIONS(219), 2, anon_sym_extern, anon_sym_packed, - ACTIONS(912), 2, + ACTIONS(257), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(914), 2, + ACTIONS(259), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1778), 2, + STATE(1313), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(910), 4, + ACTIONS(255), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1635), 7, + ACTIONS(1641), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87586,7 +88168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(1634), 14, + STATE(1306), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87599,120 +88181,33 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [2011] = 22, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1615), 1, - anon_sym_else, - ACTIONS(1619), 1, - anon_sym_EQ, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(994), 1, - sym__ElseExprTail, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1617), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [2119] = 36, - ACTIONS(65), 1, - anon_sym_error, - ACTIONS(71), 1, - anon_sym_LPAREN, - ACTIONS(73), 1, - anon_sym_switch, + [2635] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(97), 1, + ACTIONS(223), 1, + anon_sym_fn, + ACTIONS(241), 1, + anon_sym_error, + ACTIONS(247), 1, + anon_sym_LPAREN, + ACTIONS(249), 1, + anon_sym_switch, + ACTIONS(253), 1, anon_sym_SQUOTE, - ACTIONS(105), 1, + ACTIONS(261), 1, anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(109), 1, + ACTIONS(263), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(265), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(111), 1, + ACTIONS(267), 1, anon_sym_AT, - ACTIONS(117), 1, - anon_sym_fn, - ACTIONS(301), 1, + ACTIONS(578), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -87720,51 +88215,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(924), 1, + ACTIONS(970), 1, anon_sym_comptime, - ACTIONS(926), 1, + ACTIONS(972), 1, anon_sym_inline, - STATE(660), 1, + STATE(634), 1, sym_IfPrefix, - STATE(674), 1, + STATE(635), 1, sym_WhilePrefix, - STATE(677), 1, + STATE(636), 1, sym_ForPrefix, - STATE(718), 1, + STATE(1280), 1, sym_IDENTIFIER, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(1378), 1, sym__ContainerDeclAuto, - STATE(802), 1, + STATE(1384), 1, sym_LoopTypeExpr, - STATE(1929), 1, + STATE(1939), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2311), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2376), 1, sym_ContainerDeclType, - ACTIONS(39), 2, - anon_sym_extern, - anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(101), 2, + ACTIONS(219), 2, + anon_sym_extern, + anon_sym_packed, + ACTIONS(257), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(103), 2, + ACTIONS(259), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(801), 2, + STATE(1313), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(99), 4, + ACTIONS(255), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1623), 7, + ACTIONS(1639), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -87772,7 +88268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(715), 14, + STATE(1292), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -87785,272 +88281,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [2255] = 22, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1615), 1, - anon_sym_else, - ACTIONS(1627), 1, - anon_sym_EQ, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(995), 1, - sym__ElseExprTail, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1625), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [2363] = 36, + [2771] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(876), 1, - anon_sym_if, - ACTIONS(878), 1, - anon_sym_while, - ACTIONS(880), 1, - anon_sym_for, - ACTIONS(884), 1, - anon_sym_comptime, - ACTIONS(888), 1, - anon_sym_inline, - ACTIONS(890), 1, - anon_sym_fn, - ACTIONS(896), 1, + ACTIONS(189), 1, anon_sym_DOT, - ACTIONS(898), 1, + ACTIONS(191), 1, anon_sym_error, - ACTIONS(904), 1, + ACTIONS(199), 1, anon_sym_LPAREN, - ACTIONS(906), 1, + ACTIONS(201), 1, anon_sym_switch, - ACTIONS(908), 1, + ACTIONS(205), 1, anon_sym_SQUOTE, - ACTIONS(916), 1, + ACTIONS(213), 1, anon_sym_DQUOTE, - ACTIONS(918), 1, - aux_sym_LINESTRING_token1, - ACTIONS(920), 1, + ACTIONS(215), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(650), 1, + anon_sym_fn, + ACTIONS(652), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(922), 1, + ACTIONS(654), 1, anon_sym_AT, - STATE(670), 1, - sym_IfPrefix, - STATE(671), 1, - sym_WhilePrefix, - STATE(672), 1, - sym_ForPrefix, - STATE(1619), 1, - sym_IDENTIFIER, - STATE(1678), 1, - aux_sym_LINESTRING_repeat1, - STATE(1781), 1, - sym__ContainerDeclAuto, - STATE(1802), 1, - sym_LoopTypeExpr, - STATE(1926), 1, - sym_BlockLabel, - STATE(2293), 1, - sym_BUILTINIDENTIFIER, - STATE(2379), 1, - sym_ContainerDeclType, - ACTIONS(89), 2, - anon_sym_struct, - anon_sym_opaque, - ACTIONS(886), 2, - anon_sym_extern, - anon_sym_packed, - ACTIONS(912), 2, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - ACTIONS(914), 2, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - STATE(1778), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - ACTIONS(910), 4, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - ACTIONS(1637), 7, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - STATE(1631), 14, - sym_FnProto, - sym__PrimaryTypeExpr, - sym_ContainerDecl, - sym_ErrorSetDecl, - sym_GroupedExpr, - sym_IfTypeExpr, - sym_LabeledTypeExpr, - sym_SwitchExpr, - sym_CHAR_LITERAL, - sym_FLOAT, - sym_INTEGER, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [2499] = 36, - ACTIONS(91), 1, - anon_sym_enum, - ACTIONS(93), 1, - anon_sym_union, - ACTIONS(95), 1, - sym_line_comment, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(950), 1, - anon_sym_comptime, - ACTIONS(954), 1, - anon_sym_inline, - ACTIONS(956), 1, - anon_sym_fn, ACTIONS(962), 1, - anon_sym_DOT, + anon_sym_comptime, ACTIONS(964), 1, - anon_sym_error, - ACTIONS(970), 1, - anon_sym_LPAREN, - ACTIONS(972), 1, - anon_sym_switch, - ACTIONS(974), 1, - anon_sym_SQUOTE, - ACTIONS(982), 1, - anon_sym_DQUOTE, - ACTIONS(984), 1, - aux_sym_LINESTRING_token1, - ACTIONS(986), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(988), 1, - anon_sym_AT, - STATE(551), 1, - sym_IfPrefix, - STATE(691), 1, + anon_sym_inline, + STATE(615), 1, sym_ForPrefix, - STATE(692), 1, + STATE(617), 1, sym_WhilePrefix, - STATE(1616), 1, + STATE(624), 1, + sym_IfPrefix, + STATE(926), 1, sym_IDENTIFIER, - STATE(1642), 1, - aux_sym_LINESTRING_repeat1, - STATE(1734), 1, + STATE(1132), 1, sym__ContainerDeclAuto, - STATE(1736), 1, + STATE(1177), 1, sym_LoopTypeExpr, - STATE(1924), 1, + STATE(1933), 1, sym_BlockLabel, - STATE(2239), 1, + STATE(2266), 1, sym_BUILTINIDENTIFIER, - STATE(2319), 1, + STATE(2332), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(952), 2, + ACTIONS(197), 2, anon_sym_extern, anon_sym_packed, - ACTIONS(978), 2, + ACTIONS(209), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(980), 2, + ACTIONS(211), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1735), 2, + STATE(952), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1130), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(976), 4, + ACTIONS(207), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1639), 7, + ACTIONS(1643), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -88058,7 +88368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(1622), 14, + STATE(929), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -88071,34 +88381,33 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [2635] = 36, + [2907] = 36, + ACTIONS(65), 1, + anon_sym_error, + ACTIONS(71), 1, + anon_sym_LPAREN, + ACTIONS(73), 1, + anon_sym_switch, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(241), 1, - anon_sym_error, - ACTIONS(247), 1, - anon_sym_LPAREN, - ACTIONS(249), 1, - anon_sym_switch, - ACTIONS(253), 1, + ACTIONS(97), 1, anon_sym_SQUOTE, - ACTIONS(261), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(263), 1, - aux_sym_LINESTRING_token1, - ACTIONS(265), 1, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(267), 1, + ACTIONS(111), 1, anon_sym_AT, - ACTIONS(273), 1, + ACTIONS(117), 1, anon_sym_fn, - ACTIONS(578), 1, + ACTIONS(285), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -88106,46 +88415,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(1032), 1, + ACTIONS(926), 1, anon_sym_comptime, - ACTIONS(1034), 1, + ACTIONS(928), 1, anon_sym_inline, - STATE(612), 1, + STATE(680), 1, sym_IfPrefix, - STATE(614), 1, + STATE(693), 1, sym_WhilePrefix, - STATE(616), 1, + STATE(695), 1, sym_ForPrefix, - STATE(1280), 1, + STATE(719), 1, sym_IDENTIFIER, - STATE(1330), 1, - aux_sym_LINESTRING_repeat1, - STATE(1384), 1, - sym_LoopTypeExpr, - STATE(1387), 1, + STATE(780), 1, sym__ContainerDeclAuto, - STATE(1931), 1, + STATE(802), 1, + sym_LoopTypeExpr, + STATE(1935), 1, sym_BlockLabel, - STATE(2298), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2364), 1, + STATE(2334), 1, sym_ContainerDeclType, + ACTIONS(39), 2, + anon_sym_extern, + anon_sym_packed, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(219), 2, - anon_sym_extern, - anon_sym_packed, - ACTIONS(257), 2, + ACTIONS(101), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(259), 2, + ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1385), 2, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(255), 4, + ACTIONS(99), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, @@ -88158,7 +88468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(1302), 14, + STATE(718), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -88171,9 +88481,8 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [2771] = 36, + [3043] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, @@ -88193,12 +88502,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(213), 1, anon_sym_DQUOTE, ACTIONS(215), 1, - aux_sym_LINESTRING_token1, - ACTIONS(702), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(650), 1, anon_sym_fn, - ACTIONS(704), 1, + ACTIONS(652), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(706), 1, + ACTIONS(654), 1, anon_sym_AT, ACTIONS(876), 1, anon_sym_if, @@ -88206,29 +88515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(992), 1, + ACTIONS(962), 1, anon_sym_comptime, - ACTIONS(994), 1, + ACTIONS(964), 1, anon_sym_inline, - STATE(575), 1, + STATE(615), 1, sym_ForPrefix, - STATE(582), 1, + STATE(617), 1, sym_WhilePrefix, - STATE(583), 1, + STATE(624), 1, sym_IfPrefix, - STATE(906), 1, + STATE(924), 1, sym_IDENTIFIER, - STATE(985), 1, - aux_sym_LINESTRING_repeat1, - STATE(1114), 1, + STATE(1132), 1, sym__ContainerDeclAuto, - STATE(1139), 1, + STATE(1177), 1, sym_LoopTypeExpr, - STATE(1928), 1, + STATE(1933), 1, sym_BlockLabel, - STATE(2280), 1, + STATE(2266), 1, sym_BUILTINIDENTIFIER, - STATE(2320), 1, + STATE(2332), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, @@ -88242,7 +88549,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(211), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1200), 2, + STATE(952), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1130), 2, sym_ForTypeExpr, sym_WhileTypeExpr, ACTIONS(207), 4, @@ -88250,7 +88560,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1641), 7, + ACTIONS(1645), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -88258,7 +88568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(929), 14, + STATE(939), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -88271,186 +88581,86 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [2907] = 36, + [3179] = 36, ACTIONS(91), 1, anon_sym_enum, ACTIONS(93), 1, anon_sym_union, ACTIONS(95), 1, sym_line_comment, - ACTIONS(147), 1, - anon_sym_DOT, - ACTIONS(149), 1, - anon_sym_error, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(159), 1, - anon_sym_switch, - ACTIONS(163), 1, - anon_sym_SQUOTE, - ACTIONS(171), 1, - anon_sym_DQUOTE, - ACTIONS(173), 1, - aux_sym_LINESTRING_token1, - ACTIONS(790), 1, - anon_sym_fn, - ACTIONS(792), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(794), 1, - anon_sym_AT, ACTIONS(876), 1, anon_sym_if, ACTIONS(878), 1, anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(1018), 1, + ACTIONS(986), 1, anon_sym_comptime, - ACTIONS(1020), 1, + ACTIONS(990), 1, anon_sym_inline, - STATE(565), 1, - sym_IfPrefix, - STATE(567), 1, - sym_WhilePrefix, - STATE(568), 1, - sym_ForPrefix, - STATE(896), 1, - sym_IDENTIFIER, - STATE(956), 1, - aux_sym_LINESTRING_repeat1, - STATE(1072), 1, - sym__ContainerDeclAuto, - STATE(1076), 1, - sym_LoopTypeExpr, - STATE(1927), 1, - sym_BlockLabel, - STATE(2248), 1, - sym_BUILTINIDENTIFIER, - STATE(2327), 1, - sym_ContainerDeclType, - ACTIONS(89), 2, - anon_sym_struct, - anon_sym_opaque, - ACTIONS(155), 2, - anon_sym_extern, - anon_sym_packed, - ACTIONS(167), 2, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - ACTIONS(169), 2, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - STATE(1074), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - ACTIONS(165), 4, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - ACTIONS(1643), 7, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - STATE(918), 14, - sym_FnProto, - sym__PrimaryTypeExpr, - sym_ContainerDecl, - sym_ErrorSetDecl, - sym_GroupedExpr, - sym_IfTypeExpr, - sym_LabeledTypeExpr, - sym_SwitchExpr, - sym_CHAR_LITERAL, - sym_FLOAT, - sym_INTEGER, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [3043] = 36, - ACTIONS(91), 1, - anon_sym_enum, - ACTIONS(93), 1, - anon_sym_union, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(147), 1, + ACTIONS(992), 1, + anon_sym_fn, + ACTIONS(998), 1, anon_sym_DOT, - ACTIONS(149), 1, + ACTIONS(1000), 1, anon_sym_error, - ACTIONS(157), 1, + ACTIONS(1006), 1, anon_sym_LPAREN, - ACTIONS(159), 1, + ACTIONS(1008), 1, anon_sym_switch, - ACTIONS(163), 1, + ACTIONS(1010), 1, anon_sym_SQUOTE, - ACTIONS(171), 1, + ACTIONS(1018), 1, anon_sym_DQUOTE, - ACTIONS(173), 1, - aux_sym_LINESTRING_token1, - ACTIONS(790), 1, - anon_sym_fn, - ACTIONS(792), 1, + ACTIONS(1020), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(1022), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(794), 1, + ACTIONS(1024), 1, anon_sym_AT, - ACTIONS(876), 1, - anon_sym_if, - ACTIONS(878), 1, - anon_sym_while, - ACTIONS(880), 1, - anon_sym_for, - ACTIONS(1018), 1, - anon_sym_comptime, - ACTIONS(1020), 1, - anon_sym_inline, - STATE(565), 1, + STATE(672), 1, sym_IfPrefix, - STATE(567), 1, + STATE(673), 1, sym_WhilePrefix, - STATE(568), 1, + STATE(674), 1, sym_ForPrefix, - STATE(887), 1, + STATE(1624), 1, sym_IDENTIFIER, - STATE(956), 1, - aux_sym_LINESTRING_repeat1, - STATE(1072), 1, - sym__ContainerDeclAuto, - STATE(1076), 1, + STATE(1786), 1, sym_LoopTypeExpr, - STATE(1927), 1, + STATE(1843), 1, + sym__ContainerDeclAuto, + STATE(1929), 1, sym_BlockLabel, - STATE(2248), 1, + STATE(2286), 1, sym_BUILTINIDENTIFIER, - STATE(2327), 1, + STATE(2377), 1, sym_ContainerDeclType, ACTIONS(89), 2, anon_sym_struct, anon_sym_opaque, - ACTIONS(155), 2, + ACTIONS(988), 2, anon_sym_extern, anon_sym_packed, - ACTIONS(167), 2, + ACTIONS(1014), 2, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, - ACTIONS(169), 2, + ACTIONS(1016), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, - STATE(1074), 2, + STATE(1646), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(1778), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - ACTIONS(165), 4, + ACTIONS(1012), 4, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1645), 7, + ACTIONS(1647), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -88458,7 +88668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(909), 14, + STATE(1634), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -88471,9 +88681,8 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [3179] = 36, + [3315] = 36, ACTIONS(43), 1, anon_sym_fn, ACTIONS(65), 1, @@ -88493,12 +88702,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(105), 1, anon_sym_DQUOTE, ACTIONS(107), 1, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, ACTIONS(109), 1, aux_sym_IDENTIFIER_token1, ACTIONS(111), 1, anon_sym_AT, - ACTIONS(301), 1, + ACTIONS(285), 1, anon_sym_DOT, ACTIONS(876), 1, anon_sym_if, @@ -88506,29 +88715,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, ACTIONS(880), 1, anon_sym_for, - ACTIONS(938), 1, - anon_sym_comptime, ACTIONS(940), 1, + anon_sym_comptime, + ACTIONS(942), 1, anon_sym_inline, - STATE(576), 1, - sym_ForPrefix, STATE(577), 1, - sym_WhilePrefix, + sym_ForPrefix, STATE(578), 1, + sym_WhilePrefix, + STATE(579), 1, sym_IfPrefix, - STATE(721), 1, + STATE(719), 1, sym_IDENTIFIER, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(758), 1, + STATE(780), 1, sym__ContainerDeclAuto, STATE(802), 1, sym_LoopTypeExpr, - STATE(1933), 1, + STATE(1936), 1, sym_BlockLabel, - STATE(2285), 1, + STATE(2296), 1, sym_BUILTINIDENTIFIER, - STATE(2355), 1, + STATE(2334), 1, sym_ContainerDeclType, ACTIONS(39), 2, anon_sym_extern, @@ -88542,6 +88749,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(103), 2, aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, @@ -88550,7 +88760,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_FLOAT_token2, aux_sym_FLOAT_token3, aux_sym_FLOAT_token4, - ACTIONS(1621), 7, + ACTIONS(1633), 7, anon_sym_false, anon_sym_null, anon_sym_anyframe, @@ -88558,7 +88768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_undefined, anon_sym_unreachable, sym_BuildinTypeExpr, - STATE(722), 14, + STATE(718), 13, sym_FnProto, sym__PrimaryTypeExpr, sym_ContainerDecl, @@ -88571,160 +88781,59 @@ static const uint16_t ts_small_parse_table[] = { sym_FLOAT, sym_INTEGER, sym_STRINGLITERALSINGLE, - sym_LINESTRING, sym__STRINGLITERAL, - [3315] = 36, - ACTIONS(91), 1, - anon_sym_enum, - ACTIONS(93), 1, - anon_sym_union, - ACTIONS(95), 1, + [3451] = 11, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(241), 1, - anon_sym_error, - ACTIONS(247), 1, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(249), 1, - anon_sym_switch, - ACTIONS(253), 1, - anon_sym_SQUOTE, - ACTIONS(261), 1, - anon_sym_DQUOTE, - ACTIONS(263), 1, - aux_sym_LINESTRING_token1, - ACTIONS(265), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(267), 1, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(961), 1, + sym_FnCallArguments, + STATE(1031), 1, + sym_SuffixOp, + ACTIONS(1655), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(965), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, anon_sym_AT, - ACTIONS(273), 1, - anon_sym_fn, - ACTIONS(578), 1, - anon_sym_DOT, - ACTIONS(876), 1, - anon_sym_if, - ACTIONS(878), 1, - anon_sym_while, - ACTIONS(880), 1, - anon_sym_for, - ACTIONS(1032), 1, + ACTIONS(1220), 27, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, - ACTIONS(1034), 1, - anon_sym_inline, - STATE(612), 1, - sym_IfPrefix, - STATE(614), 1, - sym_WhilePrefix, - STATE(616), 1, - sym_ForPrefix, - STATE(1277), 1, - sym_IDENTIFIER, - STATE(1330), 1, - aux_sym_LINESTRING_repeat1, - STATE(1384), 1, - sym_LoopTypeExpr, - STATE(1387), 1, - sym__ContainerDeclAuto, - STATE(1931), 1, - sym_BlockLabel, - STATE(2298), 1, - sym_BUILTINIDENTIFIER, - STATE(2364), 1, - sym_ContainerDeclType, - ACTIONS(89), 2, - anon_sym_struct, - anon_sym_opaque, - ACTIONS(219), 2, - anon_sym_extern, - anon_sym_packed, - ACTIONS(257), 2, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - ACTIONS(259), 2, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - STATE(1385), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - ACTIONS(255), 4, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - ACTIONS(1629), 7, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - STATE(1292), 14, - sym_FnProto, - sym__PrimaryTypeExpr, - sym_ContainerDecl, - sym_ErrorSetDecl, - sym_GroupedExpr, - sym_IfTypeExpr, - sym_LabeledTypeExpr, - sym_SwitchExpr, - sym_CHAR_LITERAL, - sym_FLOAT, - sym_INTEGER, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [3451] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_LBRACK, - STATE(972), 1, - sym_FnCallArguments, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(969), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1210), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, + anon_sym_export, + anon_sym_extern, anon_sym_inline, anon_sym_noinline, anon_sym_threadlocal, @@ -88750,7 +88859,7 @@ static const uint16_t ts_small_parse_table[] = { [3536] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(536), 21, + ACTIONS(628), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88770,9 +88879,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(530), 40, + ACTIONS(626), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -88816,7 +88925,7 @@ static const uint16_t ts_small_parse_table[] = { [3605] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1657), 21, + ACTIONS(1659), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88836,9 +88945,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1655), 40, + ACTIONS(1657), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -88882,7 +88991,7 @@ static const uint16_t ts_small_parse_table[] = { [3674] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1661), 21, + ACTIONS(1663), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88902,9 +89011,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1659), 40, + ACTIONS(1661), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -88948,7 +89057,7 @@ static const uint16_t ts_small_parse_table[] = { [3743] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1665), 21, + ACTIONS(1667), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -88968,9 +89077,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1663), 40, + ACTIONS(1665), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -89014,7 +89123,7 @@ static const uint16_t ts_small_parse_table[] = { [3812] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1669), 21, + ACTIONS(1671), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -89034,9 +89143,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1667), 40, + ACTIONS(1669), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -89080,7 +89189,7 @@ static const uint16_t ts_small_parse_table[] = { [3881] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1673), 21, + ACTIONS(1675), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -89100,9 +89209,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1671), 40, + ACTIONS(1673), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -89143,10 +89252,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [3950] = 3, + [3950] = 19, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1679), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1677), 25, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [4051] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1677), 21, + ACTIONS(556), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -89166,9 +89357,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1675), 40, + ACTIONS(554), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -89209,93 +89400,76 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [4019] = 20, + [4120] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1681), 1, - anon_sym_EQ, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, + ACTIONS(1683), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1681), 40, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1679), 25, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [4122] = 3, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [4189] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1685), 21, + ACTIONS(1687), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -89315,9 +89489,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1683), 40, + ACTIONS(1685), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -89358,46 +89532,67 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [4191] = 8, + [4258] = 20, ACTIONS(95), 1, sym_line_comment, - STATE(250), 1, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1691), 1, + anon_sym_EQ, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1689), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1687), 35, + ACTIONS(1689), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, - anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -89419,60 +89614,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [4270] = 10, + [4361] = 3, ACTIONS(95), 1, sym_line_comment, - STATE(250), 1, + ACTIONS(1695), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1693), 40, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [4430] = 20, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1699), 1, + anon_sym_EQ, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1613), 2, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1689), 16, - anon_sym_EQ, - anon_sym_or, + ACTIONS(1603), 3, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1687), 33, + ACTIONS(1697), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, - anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -89494,61 +89763,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [4533] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(572), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(566), 40, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [4602] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1703), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1701), 40, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [4671] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(968), 1, + sym_FnCallArguments, + STATE(1031), 1, + sym_SuffixOp, + ACTIONS(1655), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(970), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1196), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1198), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_orelse, anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_DOT_DOT, - [4353] = 12, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [4756] = 20, ACTIONS(95), 1, sym_line_comment, + ACTIONS(131), 1, + anon_sym_EQ, + ACTIONS(1599), 1, + anon_sym_or, + ACTIONS(1601), 1, + anon_sym_and, ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1613), 2, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1597), 5, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1689), 10, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1687), 32, + ACTIONS(129), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, - anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -89570,57 +90052,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, anon_sym_DOT_DOT, - [4440] = 13, + [4859] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1607), 3, + ACTIONS(1707), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1689), 7, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1687), 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1705), 35, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, @@ -89652,68 +90120,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_orelse, anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [4529] = 20, + [4938] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1711), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1709), 40, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [5007] = 18, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1693), 1, - anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1679), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1691), 25, + ACTIONS(1677), 26, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, + anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -89736,398 +90271,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, anon_sym_DOT_DOT, - [4632] = 16, + [5106] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, + ACTIONS(1715), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, - anon_sym_EQ, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1687), 30, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT, - [4727] = 18, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1689), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1687), 26, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [4826] = 8, - ACTIONS(95), 1, - sym_line_comment, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1697), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1695), 35, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [4905] = 20, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(131), 1, - anon_sym_EQ, - ACTIONS(1591), 1, - anon_sym_or, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(250), 1, - sym_CompareOp, - STATE(274), 1, - sym_BitwiseOp, - STATE(275), 1, - sym_BitShiftOp, - STATE(280), 1, - sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(129), 25, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_else, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [5008] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_LBRACK, - STATE(960), 1, - sym_FnCallArguments, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(958), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1216), 27, - anon_sym_pub, - anon_sym_test, + ACTIONS(1713), 40, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5093] = 3, + [5175] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1701), 21, + ACTIONS(1719), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90147,9 +90360,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1699), 40, + ACTIONS(1717), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90190,10 +90403,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5162] = 3, + [5244] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1705), 21, + ACTIONS(1723), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90213,9 +90426,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1703), 40, + ACTIONS(1721), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90256,10 +90469,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5231] = 3, + [5313] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1709), 21, + ACTIONS(1727), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90279,9 +90492,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1707), 40, + ACTIONS(1725), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90322,10 +90535,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5300] = 3, + [5382] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(628), 21, + ACTIONS(1731), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90345,9 +90558,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(626), 40, + ACTIONS(1729), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90388,10 +90601,84 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5369] = 3, + [5451] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(938), 1, + sym_FnCallArguments, + STATE(1030), 1, + sym_SuffixOp, + ACTIONS(1655), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(937), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1196), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1198), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [5536] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1713), 21, + ACTIONS(1735), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90411,9 +90698,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1711), 40, + ACTIONS(1733), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90454,10 +90741,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5438] = 3, + [5605] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1717), 21, + ACTIONS(1739), 21, anon_sym_BANG, anon_sym_LBRACE, anon_sym_RBRACE, @@ -90477,9 +90764,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1715), 40, + ACTIONS(1737), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90520,66 +90807,59 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5507] = 19, + [5674] = 16, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1593), 1, - anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1689), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1679), 4, + anon_sym_EQ, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1687), 25, + ACTIONS(1677), 30, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, + anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -90601,181 +90881,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT, - [5608] = 11, - ACTIONS(3), 1, + [5769] = 3, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1647), 1, + ACTIONS(1743), 21, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT, - ACTIONS(1649), 1, anon_sym_LPAREN, - ACTIONS(1651), 1, anon_sym_LBRACK, - STATE(937), 1, - sym_FnCallArguments, - STATE(986), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(936), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1210), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [5693] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_LBRACK, - STATE(927), 1, - sym_FnCallArguments, - STATE(986), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(928), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1216), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [5778] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1721), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1719), 40, + ACTIONS(1741), 40, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -90816,130 +90952,135 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [5847] = 3, + [5838] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1725), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + ACTIONS(1679), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 35, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1723), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [5916] = 20, + anon_sym_DOT_DOT, + [5917] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1729), 1, + ACTIONS(1747), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1727), 25, + ACTIONS(1745), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, @@ -90959,437 +91100,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_PIPE_EQ, anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [6019] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1733), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1731), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6088] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(564), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(562), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6157] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1737), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1735), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6226] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1741), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1739), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6295] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1745), 21, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1743), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6364] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1022), 1, - sym_FnCallArguments, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1021), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1216), 26, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [6448] = 11, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [6020] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, + ACTIONS(1200), 1, anon_sym_COLON, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1651), 1, anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(947), 1, + STATE(948), 1, sym_FnCallArguments, - STATE(1100), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(950), 2, + STATE(947), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 24, + ACTIONS(1218), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -91414,7 +91152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1216), 26, + ACTIONS(1220), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -91428,6 +91166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -91441,89 +91180,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [6532] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1757), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1755), 40, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_nosuspend, - anon_sym_defer, - anon_sym_suspend, - anon_sym_errdefer, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [6600] = 8, + [6105] = 10, ACTIONS(95), 1, sym_line_comment, - STATE(176), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(177), 1, + STATE(250), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(275), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(341), 1, sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1689), 21, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1679), 16, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -91537,13 +91219,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1677), 33, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_DOT_DOT, + [6188] = 12, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1605), 5, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 34, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1679), 10, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1677), 32, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_else, anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, @@ -91572,108 +91327,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_orelse, anon_sym_catch, + anon_sym_DOT_DOT, + [6275] = 13, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, + sym_CompareOp, + STATE(250), 1, + sym_BitwiseOp, + STATE(275), 1, + sym_BitShiftOp, + STATE(341), 1, + sym_AdditionOp, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [6678] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_LBRACK, - STATE(963), 1, - sym_FnCallArguments, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(962), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 24, - ts_builtin_sym_end, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1679), 7, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1677), 32, anon_sym_COMMA, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_else, + anon_sym_and, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_DOT_DOT, + [6364] = 20, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1691), 1, + anon_sym_EQ, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1689), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [6466] = 20, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(131), 1, + anon_sym_EQ, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(129), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [6568] = 20, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1747), 1, + anon_sym_EQ, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1745), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [6670] = 20, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1699), 1, + anon_sym_EQ, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1697), 24, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_DOT_DOT, + [6772] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1755), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1198), 27, - anon_sym_pub, - anon_sym_test, + ACTIONS(1753), 40, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, + anon_sym_nosuspend, + anon_sym_defer, + anon_sym_suspend, + anon_sym_errdefer, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [6760] = 10, + [6840] = 8, ACTIONS(95), 1, sym_line_comment, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1689), 16, + ACTIONS(1679), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_AMP, @@ -91687,7 +91828,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1687), 32, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 34, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -91719,29 +91864,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [6842] = 11, + [6918] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, + ACTIONS(1200), 1, anon_sym_COLON, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1759), 1, anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(979), 1, + STATE(985), 1, sym_FnCallArguments, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(946), 2, + STATE(984), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 24, + ACTIONS(1218), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -91766,7 +91913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1210), 26, + ACTIONS(1220), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -91793,66 +91940,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [6926] = 20, + [7002] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1681), 1, - anon_sym_EQ, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1679), 16, + anon_sym_EQ, + anon_sym_or, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1679), 24, + ACTIONS(1677), 32, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_and, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_RBRACK, @@ -91874,39 +92004,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, anon_sym_DOT_DOT, - [7028] = 12, + [7084] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1689), 10, + ACTIONS(1679), 10, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -91917,7 +92054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1687), 31, + ACTIONS(1677), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -91949,42 +92086,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, anon_sym_DOT_DOT, - [7114] = 13, + [7170] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(927), 1, + sym_FnCallArguments, + STATE(1030), 1, + sym_SuffixOp, + ACTIONS(1655), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(928), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1210), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1212), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [7252] = 13, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1689), 7, + ACTIONS(1679), 7, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -91992,7 +92201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1687), 31, + ACTIONS(1677), 31, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -92024,55 +92233,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, anon_sym_DOT_DOT, - [7202] = 16, + [7340] = 16, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, + ACTIONS(1679), 4, anon_sym_EQ, anon_sym_or, anon_sym_LT, anon_sym_GT, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1687), 29, + ACTIONS(1677), 29, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -92102,351 +92311,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT, - [7296] = 20, + [7434] = 18, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1729), 1, - anon_sym_EQ, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1727), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [7398] = 20, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1693), 1, + ACTIONS(1679), 2, anon_sym_EQ, - ACTIONS(1759), 1, anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1691), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [7500] = 10, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1649), 1, - anon_sym_LPAREN, - ACTIONS(1651), 1, - anon_sym_LBRACK, - STATE(932), 1, - sym_FnCallArguments, - STATE(986), 1, - sym_SuffixOp, - ACTIONS(1653), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(926), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1198), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, + ACTIONS(1605), 5, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [7582] = 11, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1006), 1, - sym_FnCallArguments, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1007), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1210), 26, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [7666] = 8, - ACTIONS(95), 1, - sym_line_comment, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1697), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1695), 34, + ACTIONS(1677), 25, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -92471,36 +92390,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [7744] = 10, + [7532] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, - anon_sym_DOT, ACTIONS(1649), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(974), 1, + STATE(945), 1, sym_FnCallArguments, - STATE(1000), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(973), 2, + STATE(944), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 24, + ACTIONS(1214), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -92525,7 +92435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 27, + ACTIONS(1216), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -92553,225 +92463,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [7826] = 20, + [7614] = 19, ACTIONS(95), 1, sym_line_comment, - ACTIONS(131), 1, - anon_sym_EQ, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(129), 24, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [7928] = 18, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1689), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1687), 25, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_DOT_DOT, - [8026] = 19, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1603), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, - ACTIONS(1689), 2, + ACTIONS(1679), 2, anon_sym_EQ, anon_sym_or, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1687), 24, + ACTIONS(1677), 24, anon_sym_COMMA, anon_sym_SEMI, anon_sym_RBRACE, @@ -92796,26 +92544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, anon_sym_DOT_DOT, - [8126] = 10, + [7714] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, - anon_sym_DOT, ACTIONS(1649), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(939), 1, + STATE(966), 1, sym_FnCallArguments, - STATE(986), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(938), 2, + STATE(967), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 24, + ACTIONS(1214), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -92840,7 +92588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 27, + ACTIONS(1216), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -92868,27 +92616,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8208] = 8, + [7796] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, ACTIONS(1651), 1, + anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(957), 1, + sym_FnCallArguments, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(958), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 25, + ACTIONS(1210), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -92909,7 +92660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 27, + ACTIONS(1212), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -92937,27 +92688,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8285] = 8, + [7878] = 8, + ACTIONS(95), 1, + sym_line_comment, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1707), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1705), 34, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [7956] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(979), 1, + sym_FnCallArguments, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(935), 2, + STATE(975), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 25, + ACTIONS(1196), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -92978,7 +92804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 27, + ACTIONS(1198), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -92992,7 +92818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -93006,27 +92831,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8362] = 8, + [8040] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(991), 1, + sym_FnCallArguments, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(986), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 25, + ACTIONS(1218), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -93047,7 +92877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 27, + ACTIONS(1220), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93061,7 +92891,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -93075,23 +92904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8439] = 10, + [8124] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1759), 1, anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(978), 1, + STATE(987), 1, sym_FnCallArguments, - STATE(1100), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(977), 2, + STATE(1012), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, ACTIONS(1196), 24, @@ -93146,22 +92977,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8520] = 8, + [8208] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(935), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 25, + ACTIONS(1229), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93187,7 +93018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 27, + ACTIONS(1231), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93215,22 +93046,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8597] = 8, + [8285] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1763), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1766), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1769), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 25, + ACTIONS(1229), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93256,7 +93087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 27, + ACTIONS(1231), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93284,22 +93115,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8674] = 8, + [8362] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(999), 1, + sym_FnCallArguments, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1004), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1214), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1216), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [8443] = 7, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(630), 1, + anon_sym_PIPE, + ACTIONS(1769), 1, + anon_sym_COLON, + STATE(993), 1, + sym_PtrPayload, + STATE(1122), 1, + sym_WhileContinueExpr, + ACTIONS(1767), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1765), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [8518] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(1030), 1, + sym_SuffixOp, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 25, + ACTIONS(1237), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93325,7 +93295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 27, + ACTIONS(1239), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93353,22 +93323,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8751] = 8, + [8595] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 25, + ACTIONS(1261), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93394,7 +93364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 27, + ACTIONS(1263), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93422,22 +93392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8828] = 8, + [8672] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 25, + ACTIONS(1282), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93463,7 +93433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 27, + ACTIONS(1284), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93491,22 +93461,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8905] = 8, + [8749] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1771), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1774), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1777), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 25, + ACTIONS(1269), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93532,7 +93502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 27, + ACTIONS(1271), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93560,22 +93530,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [8982] = 8, + [8826] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(931), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 25, + ACTIONS(1265), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93601,7 +93571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 27, + ACTIONS(1267), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93629,22 +93599,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9059] = 8, + [8903] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(974), 1, + sym_FnCallArguments, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(933), 2, + STATE(950), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1210), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1212), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [8984] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1653), 1, + anon_sym_LBRACK, + STATE(1030), 1, + sym_SuffixOp, + ACTIONS(1655), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 25, + ACTIONS(1257), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93670,7 +93711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 27, + ACTIONS(1259), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93698,22 +93739,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9136] = 8, + [9061] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, STATE(931), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 25, + ACTIONS(1253), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93739,7 +93780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 27, + ACTIONS(1255), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93767,27 +93808,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9213] = 8, + [9138] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1759), 1, + anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(986), 1, + STATE(983), 1, + sym_FnCallArguments, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(930), 2, + STATE(981), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 25, + ACTIONS(1214), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1216), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [9219] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(173), 1, + anon_sym_BSLASH_BSLASH, + STATE(946), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1245), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -93806,9 +93912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 27, + ACTIONS(1247), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93825,6 +93933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -93839,23 +93948,23 @@ static const uint16_t ts_small_parse_table[] = { [9290] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1749), 1, + ACTIONS(1759), 1, anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(982), 1, + STATE(1003), 1, sym_FnCallArguments, - STATE(1100), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(976), 2, + STATE(1002), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 24, + ACTIONS(1210), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -93880,7 +93989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 26, + ACTIONS(1212), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -93910,9 +94019,9 @@ static const uint16_t ts_small_parse_table[] = { [9371] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1772), 1, + ACTIONS(1780), 1, anon_sym_BANG, - ACTIONS(1373), 21, + ACTIONS(1531), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -93934,7 +94043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1371), 37, + ACTIONS(1529), 37, anon_sym_COMMA, anon_sym_SEMI, anon_sym_and, @@ -93975,11 +94084,11 @@ static const uint16_t ts_small_parse_table[] = { [9440] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1387), 1, + ACTIONS(1545), 1, anon_sym_LBRACE, - STATE(983), 1, + STATE(1024), 1, sym_InitList, - ACTIONS(1385), 21, + ACTIONS(1543), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -94001,7 +94110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1383), 36, + ACTIONS(1541), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -94038,30 +94147,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [9511] = 10, + [9511] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(997), 1, - sym_FnCallArguments, - STATE(1060), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(998), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 24, + ACTIONS(1249), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -94082,7 +94188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 26, + ACTIONS(1251), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94096,6 +94202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -94109,30 +94216,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9592] = 10, + [9588] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1749), 1, - anon_sym_LPAREN, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1020), 1, - sym_FnCallArguments, - STATE(1060), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1028), 2, + STATE(932), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 24, + ACTIONS(1249), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -94153,7 +94257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1198), 26, + ACTIONS(1251), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94167,6 +94271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -94180,90 +94285,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9673] = 7, - ACTIONS(95), 1, + [9665] = 5, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(630), 1, - anon_sym_PIPE, - ACTIONS(1778), 1, - anon_sym_COLON, - STATE(1026), 1, - sym_PtrPayload, - STATE(1163), 1, - sym_WhileContinueExpr, - ACTIONS(1776), 20, - anon_sym_BANG, + ACTIONS(1782), 1, + anon_sym_BSLASH_BSLASH, + STATE(946), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1222), 28, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym_DOT, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, anon_sym_AT, - ACTIONS(1774), 35, + ACTIONS(1224), 28, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, + anon_sym_export, anon_sym_extern, anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9748] = 8, + [9736] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(934), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 25, + ACTIONS(1241), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -94289,7 +94392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 26, + ACTIONS(1243), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94303,6 +94406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -94316,22 +94420,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9824] = 8, + [9813] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1030), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(971), 2, + STATE(933), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1233), 25, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1235), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [9890] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym__ElseTypeExprTail, + STATE(1259), 1, + sym_InitList, + ACTIONS(1305), 2, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1303), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + ACTIONS(1541), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1543), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [9966] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1038), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 25, + ACTIONS(1229), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -94357,7 +94598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 26, + ACTIONS(1231), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94384,12 +94625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [9900] = 4, + [10042] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1780), 1, + ACTIONS(1787), 1, anon_sym_BANG, - ACTIONS(1373), 21, + ACTIONS(1531), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -94411,7 +94652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1371), 36, + ACTIONS(1529), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_else, @@ -94448,12 +94689,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [9968] = 5, + [10110] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(215), 1, + anon_sym_BSLASH_BSLASH, + STATE(977), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1247), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1245), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [10180] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1782), 1, + ACTIONS(1789), 1, anon_sym_COLON, - STATE(1015), 1, + STATE(1018), 1, sym_BreakLabel, ACTIONS(49), 21, anon_sym_EQ, @@ -94513,22 +94819,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [10038] = 8, + [10250] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 25, + ACTIONS(1237), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -94554,7 +94860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 26, + ACTIONS(1239), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94581,25 +94887,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10114] = 8, + [10326] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1180), 1, + sym__ElseTypeExprTail, + STATE(1259), 1, + sym_InitList, + ACTIONS(1313), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1311), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 24, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94621,7 +94928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 27, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94632,7 +94939,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -94649,25 +94955,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10190] = 8, + [10402] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1181), 1, + sym__ElseTypeExprTail, + STATE(1259), 1, + sym_InitList, + ACTIONS(1309), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1307), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 24, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -94689,7 +94996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 27, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94700,7 +95007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -94717,27 +95023,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10266] = 8, + [10478] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(971), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 25, + ACTIONS(1229), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -94758,7 +95063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 26, + ACTIONS(1231), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94772,6 +95077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -94785,22 +95091,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10342] = 8, + [10554] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 24, + ACTIONS(1229), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -94825,7 +95131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 27, + ACTIONS(1231), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94853,88 +95159,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10418] = 8, + [10630] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1763), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1766), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1769), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1264), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [10494] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1784), 1, - aux_sym_LINESTRING_token1, - STATE(975), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1275), 28, + ACTIONS(1282), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -94953,11 +95198,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1277), 28, + ACTIONS(1284), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -94971,10 +95214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -94986,26 +95227,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10564] = 8, + [10706] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1791), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1794), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1797), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 24, + ACTIONS(1269), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -95026,7 +95268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 27, + ACTIONS(1271), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95040,7 +95282,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -95054,22 +95295,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10640] = 8, + [10782] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(976), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 24, + ACTIONS(1233), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -95094,7 +95335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 27, + ACTIONS(1235), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95122,22 +95363,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10716] = 8, + [10858] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1786), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1789), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1792), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 25, + ACTIONS(1265), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -95163,7 +95404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 26, + ACTIONS(1267), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95190,25 +95431,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10792] = 8, + [10934] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1093), 1, + sym__ElseTypeExprTail, + STATE(1259), 1, + sym_InitList, + ACTIONS(1313), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1311), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(951), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 24, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95230,7 +95472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 27, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95241,7 +95483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -95258,24 +95499,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10868] = 8, + [11010] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, + ACTIONS(1785), 1, anon_sym_LBRACE, - STATE(1176), 1, + STATE(1092), 1, sym__ElseTypeExprTail, - STATE(1251), 1, + STATE(1259), 1, sym_InitList, - ACTIONS(1303), 2, + ACTIONS(1309), 2, anon_sym_BANG, anon_sym_DOT, - ACTIONS(1301), 4, + ACTIONS(1307), 4, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -95299,7 +95540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95326,22 +95567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [10944] = 8, + [11086] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 24, + ACTIONS(1241), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -95366,7 +95607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 27, + ACTIONS(1243), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95394,22 +95635,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11020] = 8, + [11162] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(952), 2, + STATE(978), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 24, + ACTIONS(1249), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -95434,7 +95675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 27, + ACTIONS(1251), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95462,27 +95703,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11096] = 8, + [11238] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 25, + ACTIONS(1249), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -95503,7 +95743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 26, + ACTIONS(1251), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95517,6 +95757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -95530,26 +95771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11172] = 8, + [11314] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym__ElseTypeExprTail, - STATE(1251), 1, - sym_InitList, - ACTIONS(1311), 2, - anon_sym_BANG, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1309), 4, - anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK, + STATE(1031), 1, + sym_SuffixOp, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + STATE(980), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1253), 24, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95571,7 +95811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1255), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95582,6 +95822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -95598,94 +95839,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11248] = 8, - ACTIONS(3), 1, + [11390] = 22, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1059), 1, - sym__ElseTypeExprTail, - STATE(1251), 1, - sym_InitList, - ACTIONS(1303), 2, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1301), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - ACTIONS(1383), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + ACTIONS(1802), 1, + anon_sym_EQ, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + STATE(239), 1, + sym_AssignOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1800), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1385), 26, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [11324] = 8, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1804), 17, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + [11494] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1062), 1, - sym__ElseTypeExprTail, - STATE(1251), 1, - sym_InitList, - ACTIONS(1311), 2, - anon_sym_BANG, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1309), 4, - anon_sym_LPAREN, + ACTIONS(1653), 1, anon_sym_LBRACK, + STATE(1031), 1, + sym_SuffixOp, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + STATE(973), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1257), 24, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95707,7 +95961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1259), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95718,6 +95972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -95734,27 +95989,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11400] = 8, + [11570] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 25, + ACTIONS(1265), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -95775,7 +96029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 26, + ACTIONS(1267), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95789,6 +96043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -95802,25 +96057,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11476] = 8, + [11646] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1091), 1, + sym__ElseTypeExprTail, + STATE(1259), 1, + sym_InitList, + ACTIONS(1305), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1303), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1000), 1, - sym_SuffixOp, - ACTIONS(1653), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 24, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95842,7 +96098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 27, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95853,7 +96109,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -95870,26 +96125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11552] = 8, + [11722] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym__ElseTypeExprTail, - STATE(1251), 1, - sym_InitList, - ACTIONS(1290), 2, - anon_sym_BANG, + ACTIONS(1771), 1, anon_sym_DOT, - ACTIONS(1288), 4, - anon_sym_LPAREN, + ACTIONS(1774), 1, anon_sym_LBRACK, + STATE(1031), 1, + sym_SuffixOp, + ACTIONS(1777), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + STATE(973), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1269), 24, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -95911,7 +96165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1271), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -95922,6 +96176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, anon_sym_else, @@ -95938,22 +96193,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11628] = 8, + [11798] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(962), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 25, + ACTIONS(1229), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -95979,7 +96234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 26, + ACTIONS(1231), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96006,26 +96261,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11704] = 8, + [11874] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(954), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 24, + ACTIONS(1257), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96046,7 +96302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 27, + ACTIONS(1259), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96060,7 +96316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -96074,22 +96329,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11780] = 8, + [11950] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1651), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(955), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 24, + ACTIONS(1282), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96114,7 +96369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 27, + ACTIONS(1284), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96142,22 +96397,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11856] = 8, + [12026] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1647), 1, + ACTIONS(1806), 1, + anon_sym_BSLASH_BSLASH, + STATE(977), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1224), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, anon_sym_DOT, - ACTIONS(1651), 1, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1222), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [12096] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1649), 1, + anon_sym_DOT, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1000), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1653), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(957), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 24, + ACTIONS(1261), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96182,7 +96502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 27, + ACTIONS(1263), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96210,20 +96530,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [11932] = 5, + [12172] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1797), 1, - aux_sym_LINESTRING_token1, - STATE(975), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1281), 28, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1038), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(954), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1253), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96242,11 +96569,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1283), 28, + ACTIONS(1255), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96260,10 +96585,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -96275,27 +96598,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12002] = 8, + [12248] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1649), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1653), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1031), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1655), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(973), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 25, + ACTIONS(1237), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96316,7 +96638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 26, + ACTIONS(1239), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96330,6 +96652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -96343,22 +96666,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12078] = 8, + [12324] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(959), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 25, + ACTIONS(1249), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96384,7 +96707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 26, + ACTIONS(1251), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96411,22 +96734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12154] = 8, + [12400] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(968), 2, + STATE(960), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 25, + ACTIONS(1261), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96452,7 +96775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 26, + ACTIONS(1263), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96479,22 +96802,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12230] = 8, + [12476] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1038), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(964), 2, + STATE(982), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 25, + ACTIONS(1249), 25, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96520,7 +96843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 26, + ACTIONS(1251), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96547,27 +96870,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12306] = 8, + [12552] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1184), 1, - sym__ElseTypeExprTail, - STATE(1251), 1, - sym_InitList, - ACTIONS(1290), 2, - anon_sym_BANG, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1288), 4, - anon_sym_LPAREN, + ACTIONS(1761), 1, anon_sym_LBRACK, + STATE(1038), 1, + sym_SuffixOp, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + STATE(960), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1241), 25, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96588,7 +96911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1243), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96599,9 +96922,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -96615,109 +96938,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12382] = 22, - ACTIONS(95), 1, + [12628] = 8, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1038), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(959), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1233), 25, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, - ACTIONS(1759), 1, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1235), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, anon_sym_or, - ACTIONS(1761), 1, anon_sym_and, - ACTIONS(1802), 1, - anon_sym_EQ, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - STATE(238), 1, - sym_AssignOp, - ACTIONS(1601), 2, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, + anon_sym_orelse, + anon_sym_catch, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [12704] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1241), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1800), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(1597), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1243), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1804), 17, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - [12486] = 8, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [12779] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1100), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(953), 2, + STATE(1005), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 25, + ACTIONS(1253), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96738,7 +97113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 26, + ACTIONS(1255), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96765,10 +97140,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12562] = 3, + [12854] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1808), 21, + ACTIONS(1811), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -96790,7 +97165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1806), 36, + ACTIONS(1809), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -96827,81 +97202,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [12627] = 8, - ACTIONS(3), 1, + [12919] = 3, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1815), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1232), 26, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, + ACTIONS(1813), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_orelse, anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [12702] = 5, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [12984] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1810), 1, - aux_sym_LINESTRING_token1, - STATE(1011), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1277), 27, + ACTIONS(1817), 1, + anon_sym_else, + STATE(1181), 1, + sym__ElseTypeExprTail, + ACTIONS(1309), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -96929,7 +97299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1275), 28, + ACTIONS(1307), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -96958,19 +97328,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [12771] = 5, + [13053] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1812), 1, - anon_sym_LPAREN, - STATE(1057), 1, - sym_FnCallArguments, - ACTIONS(1294), 27, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1025), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1233), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -96989,11 +97366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 28, + ACTIONS(1235), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97007,10 +97382,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -97022,10 +97395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [12840] = 3, + [13128] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1817), 21, + ACTIONS(532), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -97047,7 +97420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1815), 36, + ACTIONS(530), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -97084,13 +97457,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [12905] = 5, + [13193] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(630), 1, - anon_sym_PIPE, - STATE(1195), 1, - sym_PtrPayload, + ACTIONS(1769), 1, + anon_sym_COLON, + STATE(1201), 1, + sym_WhileContinueExpr, ACTIONS(1821), 20, anon_sym_BANG, anon_sym_LBRACE, @@ -97110,7 +97483,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, ACTIONS(1819), 35, anon_sym_comptime, @@ -97148,46 +97521,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [12974] = 7, + [13262] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1251), 1, - sym_InitList, - ACTIONS(1431), 2, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1429), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - ACTIONS(1383), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1817), 1, + anon_sym_else, + STATE(1185), 1, + sym__ElseTypeExprTail, + ACTIONS(1305), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97198,11 +97539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -97214,72 +97556,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13047] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1825), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1303), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_SLASH, + anon_sym_PIPE_PIPE, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1823), 36, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [13331] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1651), 1, + anon_sym_LPAREN, + STATE(1083), 1, + sym_FnCallArguments, + ACTIONS(1295), 27, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [13112] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(572), 28, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1297), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97308,14 +97649,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(570), 29, + [13400] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1265), 24, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -97334,14 +97687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [13177] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(568), 28, + ACTIONS(1267), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97355,10 +97703,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -97370,37 +97716,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(566), 29, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_COLON, + [13475] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(630), 1, + anon_sym_PIPE, + STATE(1128), 1, + sym_PtrPayload, + ACTIONS(1825), 20, + anon_sym_BANG, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - [13242] = 3, + ACTIONS(1823), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [13544] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(1829), 21, @@ -97462,134 +97842,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [13307] = 3, - ACTIONS(95), 1, + [13609] = 8, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1833), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1831), 36, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1006), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1249), 24, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [13372] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1837), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_CARET, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_SLASH, + anon_sym_PIPE_PIPE, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1835), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1251), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [13437] = 3, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [13684] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1841), 21, + ACTIONS(1833), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -97611,7 +97934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1839), 36, + ACTIONS(1831), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -97648,22 +97971,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [13502] = 8, + [13749] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(524), 28, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, anon_sym_DOT, - ACTIONS(1751), 1, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(522), 29, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [13814] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1060), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(984), 2, + STATE(1028), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 24, + ACTIONS(1229), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -97688,7 +98073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 26, + ACTIONS(1231), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97715,22 +98100,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13577] = 8, + [13889] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1060), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1029), 2, + STATE(996), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 24, + ACTIONS(1229), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -97755,7 +98140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 26, + ACTIONS(1231), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97782,18 +98167,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13652] = 4, + [13964] = 8, ACTIONS(3), 1, sym_line_comment, - STATE(1069), 1, - sym__ElseTypeExprTail, - ACTIONS(1288), 28, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1249), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -97812,11 +98205,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1290), 28, + ACTIONS(1251), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97830,10 +98221,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -97845,19 +98234,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13719] = 5, + [14039] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1649), 1, - anon_sym_LPAREN, - STATE(1057), 1, - sym_FnCallArguments, - ACTIONS(1294), 27, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1237), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -97876,11 +98272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 28, + ACTIONS(1239), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97894,10 +98288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -97909,18 +98301,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13788] = 4, + [14114] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - ACTIONS(532), 28, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1261), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -97939,11 +98339,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(534), 28, + ACTIONS(1263), 26, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [14189] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1301), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -97972,12 +98400,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13855] = 4, + ACTIONS(1299), 29, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + [14254] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1837), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1835), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [14319] = 4, ACTIONS(3), 1, sym_line_comment, - STATE(1062), 1, - sym__ElseTypeExprTail, - ACTIONS(1309), 28, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + ACTIONS(568), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -98006,7 +98526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1311), 28, + ACTIONS(570), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98035,14 +98555,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13922] = 4, + [14386] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1841), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1839), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [14451] = 3, ACTIONS(3), 1, sym_line_comment, - STATE(1059), 1, - sym__ElseTypeExprTail, - ACTIONS(1301), 28, + ACTIONS(564), 28, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(562), 29, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -98069,7 +98679,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1303), 28, + [14516] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1757), 1, + anon_sym_DOT, + ACTIONS(1761), 1, + anon_sym_LBRACK, + STATE(1065), 1, + sym_SuffixOp, + ACTIONS(1763), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1028), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1257), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1259), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98083,10 +98733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -98098,10 +98746,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [13989] = 3, + [14591] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(528), 28, + STATE(1093), 1, + sym__ElseTypeExprTail, + ACTIONS(1311), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1313), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98130,10 +98809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(526), 29, + [14658] = 4, + ACTIONS(3), 1, + sym_line_comment, + STATE(1092), 1, + sym__ElseTypeExprTail, + ACTIONS(1307), 28, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -98160,26 +98843,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [14054] = 8, + ACTIONS(1309), 28, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [14725] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1845), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1843), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [14790] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 24, + STATE(1091), 1, + sym__ElseTypeExprTail, + ACTIONS(1303), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -98198,9 +98964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 26, + ACTIONS(1305), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98214,8 +98982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -98227,25 +98997,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [14129] = 8, + [14857] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1259), 1, + sym_InitList, + ACTIONS(1465), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1463), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1005), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 24, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -98267,7 +99036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 26, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98278,9 +99047,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -98294,47 +99063,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [14204] = 8, - ACTIONS(3), 1, + [14930] = 3, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(131), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, anon_sym_AMP, anon_sym_CARET, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1224), 26, + ACTIONS(129), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [14995] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(560), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -98348,8 +99142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -98361,64 +99157,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [14279] = 23, + ACTIONS(558), 29, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [15060] = 23, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, ACTIONS(1802), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(258), 1, - sym_AssignOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(303), 1, + sym_AssignOp, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(993), 1, + STATE(1008), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, ACTIONS(1800), 2, anon_sym_SEMI, anon_sym_else, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, @@ -98443,64 +99269,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - [14384] = 23, + [15165] = 23, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, ACTIONS(1802), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(258), 1, - sym_AssignOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(303), 1, + sym_AssignOp, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(994), 1, + STATE(998), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, ACTIONS(1800), 2, anon_sym_SEMI, anon_sym_else, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, @@ -98525,64 +99351,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - [14489] = 23, + [15270] = 23, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1603), 1, + ACTIONS(1611), 1, anon_sym_orelse, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1611), 1, + ACTIONS(1619), 1, anon_sym_PLUS_PLUS, ACTIONS(1802), 1, anon_sym_EQ, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(258), 1, - sym_AssignOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(303), 1, + sym_AssignOp, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - STATE(995), 1, + STATE(1010), 1, sym__ElseExprTail, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, + ACTIONS(1621), 2, anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, ACTIONS(1800), 2, anon_sym_SEMI, anon_sym_else, - ACTIONS(1595), 3, + ACTIONS(1603), 3, anon_sym_PIPE, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1607), 3, + ACTIONS(1615), 3, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, + ACTIONS(1605), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1609), 6, + ACTIONS(1617), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_PLUS_PERCENT, @@ -98607,262 +99433,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PERCENT_EQ, anon_sym_PLUS_PERCENT_EQ, anon_sym_DASH_PERCENT_EQ, - [14594] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1843), 1, - aux_sym_LINESTRING_token1, - STATE(1011), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1283), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1281), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [14663] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1848), 21, - anon_sym_EQ, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1846), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [14728] = 3, + [15375] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1852), 21, - anon_sym_EQ, - anon_sym_or, + ACTIONS(622), 1, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1850), 36, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, - anon_sym_PLUS_PLUS, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [14793] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1649), 1, - anon_sym_LPAREN, - STATE(1090), 1, - sym_FnCallArguments, - ACTIONS(1305), 27, - ts_builtin_sym_end, - anon_sym_COMMA, + STATE(1194), 1, + sym_Payload, + ACTIONS(1849), 20, + anon_sym_BANG, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1307), 28, - anon_sym_pub, - anon_sym_test, + ACTIONS(1847), 35, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [14862] = 3, + [15444] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(131), 21, + ACTIONS(1853), 21, anon_sym_EQ, anon_sym_or, anon_sym_PIPE, @@ -98884,7 +99522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(129), 36, + ACTIONS(1851), 36, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -98921,89 +99559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_STAR_STAR, anon_sym_DOT_DOT, - [14927] = 8, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1244), 26, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [15002] = 8, + [15509] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1757), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1761), 1, anon_sym_LBRACK, - STATE(1060), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1763), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1029), 2, + STATE(1028), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 24, + ACTIONS(1282), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -99028,7 +99599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 26, + ACTIONS(1284), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99055,10 +99626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15077] = 3, + [15584] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(540), 28, + ACTIONS(528), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99087,7 +99658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(538), 29, + ACTIONS(526), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_COLON, @@ -99117,84 +99688,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [15142] = 3, - ACTIONS(95), 1, + [15649] = 5, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(544), 21, - anon_sym_EQ, + ACTIONS(1817), 1, + anon_sym_else, + STATE(1180), 1, + sym__ElseTypeExprTail, + ACTIONS(1313), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, anon_sym_or, + anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(542), 36, + aux_sym_IDENTIFIER_token1, + ACTIONS(1311), 28, + ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_orelse, - anon_sym_catch, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_DOT_DOT, - [15207] = 8, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [15718] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, + ACTIONS(1791), 1, anon_sym_DOT, - ACTIONS(1751), 1, + ACTIONS(1794), 1, anon_sym_LBRACK, - STATE(1060), 1, + STATE(1065), 1, sym_SuffixOp, - ACTIONS(1753), 2, + ACTIONS(1797), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1016), 2, + STATE(1028), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 24, + ACTIONS(1269), 24, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -99219,7 +99792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 26, + ACTIONS(1271), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99246,26 +99819,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15282] = 8, + [15793] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1857), 21, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1855), 36, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_orelse, + anon_sym_catch, + anon_sym_PLUS_PLUS, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + anon_sym_DOT_DOT, + [15858] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 24, + ACTIONS(1859), 1, + anon_sym_LPAREN, + STATE(1094), 1, + sym_FnCallArguments, + ACTIONS(1286), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -99284,9 +99912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 26, + ACTIONS(1288), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99300,8 +99930,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -99313,26 +99945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15357] = 8, + [15927] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1017), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 24, + ACTIONS(1651), 1, + anon_sym_LPAREN, + STATE(1094), 1, + sym_FnCallArguments, + ACTIONS(1286), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -99351,9 +99976,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 26, + ACTIONS(1288), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99367,8 +99994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -99380,14 +100009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15432] = 5, + [15996] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1854), 1, - anon_sym_else, - STATE(1184), 1, - sym__ElseTypeExprTail, - ACTIONS(1290), 27, + ACTIONS(528), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99415,9 +100040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1288), 28, + ACTIONS(526), 29, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -99444,42 +100070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [15501] = 5, + [16060] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1854), 1, - anon_sym_else, - STATE(1180), 1, - sym__ElseTypeExprTail, - ACTIONS(1311), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1309), 28, + ACTIONS(1525), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -99508,14 +100102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [15570] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1854), 1, - anon_sym_else, - STATE(1176), 1, - sym__ElseTypeExprTail, - ACTIONS(1303), 27, + ACTIONS(1527), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99529,6 +100116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -99543,44 +100131,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1301), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [15639] = 5, + [16124] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1778), 1, - anon_sym_COLON, - STATE(1146), 1, - sym_WhileContinueExpr, - ACTIONS(1858), 20, + ACTIONS(1864), 21, anon_sym_BANG, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_DOT, anon_sym_LPAREN, @@ -99598,9 +100154,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1856), 35, + ACTIONS(1862), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -99636,15 +100192,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [15708] = 5, + [16188] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(606), 1, - anon_sym_PIPE, - STATE(1189), 1, - sym_Payload, - ACTIONS(1862), 20, + ACTIONS(1868), 21, anon_sym_BANG, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_DOT, anon_sym_LPAREN, @@ -99662,9 +100215,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1860), 35, + ACTIONS(1866), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -99700,26 +100253,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [15777] = 8, + [16252] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1751), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1753), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 24, + ACTIONS(1529), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -99738,9 +100281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 26, + ACTIONS(1531), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99754,8 +100299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -99767,47 +100314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15852] = 8, + [16316] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1786), 1, - anon_sym_DOT, - ACTIONS(1789), 1, - anon_sym_LBRACK, - STATE(1060), 1, - sym_SuffixOp, - ACTIONS(1792), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1029), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1264), 26, + ACTIONS(510), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99821,8 +100331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -99834,10 +100346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [15927] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1327), 28, + ACTIONS(512), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -99866,44 +100375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1329), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [15991] = 3, + [16380] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1389), 28, + ACTIONS(1870), 1, + anon_sym_LPAREN, + STATE(1179), 1, + sym_FnCallArguments, + ACTIONS(1286), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -99927,7 +100410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1391), 28, + ACTIONS(1288), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -99941,7 +100424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -99956,39 +100438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16055] = 3, + [16448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1547), 28, + ACTIONS(506), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100017,10 +100470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16119] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1525), 28, + ACTIONS(508), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100049,39 +100499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1527), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [16183] = 3, + [16512] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(568), 27, + ACTIONS(534), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100095,6 +100516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -100109,10 +100531,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(566), 29, + ACTIONS(536), 28, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -100139,39 +100560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [16247] = 3, + [16576] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1513), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1515), 28, + ACTIONS(538), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100200,10 +100592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16311] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1417), 28, + ACTIONS(540), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100232,7 +100621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1419), 28, + [16640] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(524), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100246,7 +100638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -100261,12 +100652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16375] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1405), 28, + ACTIONS(522), 29, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -100293,39 +100682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1407), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [16439] = 3, + [16704] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(572), 27, + ACTIONS(546), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100339,6 +100699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -100353,10 +100714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(570), 29, + ACTIONS(548), 28, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -100383,39 +100743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [16503] = 3, + [16768] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(516), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(518), 28, + ACTIONS(550), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100444,41 +100775,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16567] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(540), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(538), 29, + ACTIONS(552), 28, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -100505,12 +100804,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [16631] = 4, + [16832] = 7, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - ACTIONS(534), 27, + ACTIONS(1873), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_InitList, + ACTIONS(1465), 2, + anon_sym_BANG, + anon_sym_DOT, + ACTIONS(1463), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + ACTIONS(1541), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1543), 25, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [16904] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1301), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100538,7 +100900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(532), 28, + ACTIONS(1299), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100566,11 +100928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - [16697] = 3, + [16968] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1339), 28, + ACTIONS(1567), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100599,7 +100962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1341), 28, + ACTIONS(1569), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100628,10 +100991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16761] = 3, + [17032] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1557), 28, + ACTIONS(1479), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100660,7 +101023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1559), 28, + ACTIONS(1481), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100689,10 +101052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16825] = 3, + [17096] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1561), 28, + ACTIONS(1435), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100721,7 +101084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1563), 28, + ACTIONS(1437), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100750,10 +101113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16889] = 3, + [17160] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1505), 28, + ACTIONS(1399), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100782,7 +101145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1507), 28, + ACTIONS(1401), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100811,10 +101174,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [16953] = 3, + [17224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1437), 28, + ACTIONS(1387), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100843,7 +101206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1439), 28, + ACTIONS(1389), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100872,10 +101235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17017] = 3, + [17288] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1541), 28, + ACTIONS(1363), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100904,7 +101267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1543), 28, + ACTIONS(1365), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100933,10 +101296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17081] = 3, + [17352] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1323), 28, + ACTIONS(1343), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -100965,7 +101328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1325), 28, + ACTIONS(1345), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -100994,10 +101357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17145] = 3, + [17416] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1351), 28, + ACTIONS(1335), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101026,7 +101389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1353), 28, + ACTIONS(1337), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101055,10 +101418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17209] = 3, + [17480] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1569), 28, + ACTIONS(1331), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101087,7 +101450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1571), 28, + ACTIONS(1333), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101116,10 +101479,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17273] = 3, + [17544] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1481), 28, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + ACTIONS(570), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(568), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101148,39 +101541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1483), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [17337] = 3, + [17610] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1469), 28, + ACTIONS(1559), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101209,7 +101573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1471), 28, + ACTIONS(1561), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101238,10 +101602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17401] = 3, + [17674] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1485), 28, + ACTIONS(1521), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101270,7 +101634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1487), 28, + ACTIONS(1523), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101299,10 +101663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17465] = 3, + [17738] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1429), 28, + ACTIONS(1507), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101331,7 +101695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1431), 28, + ACTIONS(1509), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101360,10 +101724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17529] = 3, + [17802] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1319), 28, + ACTIONS(1499), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101392,7 +101756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1321), 28, + ACTIONS(1501), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101421,10 +101785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17593] = 3, + [17866] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1335), 28, + ACTIONS(1455), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101453,7 +101817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1337), 28, + ACTIONS(1457), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101482,10 +101846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17657] = 3, + [17930] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1262), 28, + ACTIONS(1443), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101514,7 +101878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 28, + ACTIONS(1445), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101543,12 +101907,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17721] = 3, + [17994] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1461), 28, + ACTIONS(560), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(558), 29, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -101575,39 +101968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1463), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [17785] = 3, + [18058] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1453), 28, + ACTIONS(1315), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101636,7 +102000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1455), 28, + ACTIONS(1317), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101665,14 +102029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17849] = 5, + [18122] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1749), 1, + ACTIONS(1759), 1, anon_sym_LPAREN, - STATE(1174), 1, + STATE(1179), 1, sym_FnCallArguments, - ACTIONS(1294), 27, + ACTIONS(1286), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101700,7 +102064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 27, + ACTIONS(1288), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101728,10 +102092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17917] = 3, + [18190] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1347), 28, + ACTIONS(1411), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101760,7 +102124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1349), 28, + ACTIONS(1413), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101789,10 +102153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [17981] = 3, + [18254] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1501), 28, + ACTIONS(1379), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101821,7 +102185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1503), 28, + ACTIONS(1381), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101850,7 +102214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18045] = 3, + [18318] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1359), 28, @@ -101911,10 +102275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18109] = 3, + [18382] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1457), 28, + ACTIONS(1347), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -101943,7 +102307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1459), 28, + ACTIONS(1349), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -101972,10 +102336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18173] = 3, + [18446] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1553), 28, + ACTIONS(1339), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102004,7 +102368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1555), 28, + ACTIONS(1341), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102033,10 +102397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18237] = 3, + [18510] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1367), 28, + ACTIONS(1323), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102065,7 +102429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1369), 28, + ACTIONS(1325), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102094,18 +102458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18301] = 5, + [18574] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN, - STATE(1194), 1, - sym_FnCallArguments, - ACTIONS(1305), 27, + ACTIONS(1351), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -102129,7 +102490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1307), 27, + ACTIONS(1353), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102143,6 +102504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -102157,10 +102519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18369] = 3, + [18638] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1331), 28, + ACTIONS(1367), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102189,7 +102551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1333), 28, + ACTIONS(1369), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102218,10 +102580,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18433] = 3, + [18702] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1441), 28, + ACTIONS(1415), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102250,7 +102612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1443), 28, + ACTIONS(1417), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102279,10 +102641,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18497] = 3, + [18766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1375), 28, + ACTIONS(1439), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102311,7 +102673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1377), 28, + ACTIONS(1441), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102340,10 +102702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18561] = 3, + [18830] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1549), 28, + ACTIONS(1447), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102372,7 +102734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1551), 28, + ACTIONS(1449), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102401,10 +102763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18625] = 3, + [18894] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1313), 28, + ACTIONS(1451), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102433,7 +102795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1315), 28, + ACTIONS(1453), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102462,10 +102824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18689] = 3, + [18958] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1393), 28, + ACTIONS(1459), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102494,7 +102856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1395), 28, + ACTIONS(1461), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102523,10 +102885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18753] = 3, + [19022] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1445), 28, + ACTIONS(1503), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102555,7 +102917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1447), 28, + ACTIONS(1505), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102584,10 +102946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18817] = 3, + [19086] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1565), 28, + ACTIONS(1513), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102616,7 +102978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1567), 28, + ACTIONS(1515), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102645,10 +103007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18881] = 3, + [19150] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1449), 28, + ACTIONS(1537), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102677,7 +103039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1451), 28, + ACTIONS(1539), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102706,10 +103068,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [18945] = 3, + [19214] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1343), 28, + ACTIONS(1547), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102738,7 +103100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1345), 28, + ACTIONS(1549), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102767,10 +103129,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19009] = 3, + [19278] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1413), 28, + ACTIONS(1551), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102799,7 +103161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1415), 28, + ACTIONS(1553), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102828,10 +103190,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19073] = 3, + [19342] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(528), 27, + ACTIONS(564), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102859,7 +103221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(526), 29, + ACTIONS(562), 29, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_COLON, @@ -102889,10 +103251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [19137] = 3, + [19406] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1489), 28, + ACTIONS(1571), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102921,7 +103283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1491), 28, + ACTIONS(1573), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -102950,10 +103312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19201] = 3, + [19470] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1493), 28, + ACTIONS(1495), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -102982,7 +103344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1495), 28, + ACTIONS(1497), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103011,10 +103373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19265] = 3, + [19534] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1355), 28, + ACTIONS(1419), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103043,7 +103405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1357), 28, + ACTIONS(1421), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103072,10 +103434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19329] = 3, + [19598] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1401), 28, + ACTIONS(1403), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103104,7 +103466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1403), 28, + ACTIONS(1405), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103133,10 +103495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19393] = 3, + [19662] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 28, + ACTIONS(1327), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103165,7 +103527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1523), 28, + ACTIONS(1329), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103194,25 +103556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19457] = 7, + [19726] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1864), 1, - anon_sym_LBRACE, - STATE(1259), 1, - sym_InitList, - ACTIONS(1431), 2, - anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1429), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - ACTIONS(1383), 23, + ACTIONS(1355), 28, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -103231,38 +103584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 25, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [19529] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(522), 28, + ACTIONS(1357), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103291,39 +103617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(524), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [19593] = 3, + [19790] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1465), 28, + ACTIONS(1371), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103352,7 +103649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1467), 28, + ACTIONS(1373), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103381,10 +103678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19657] = 3, + [19854] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1533), 28, + ACTIONS(1375), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103413,39 +103710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1535), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [19721] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(558), 28, + ACTIONS(1377), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103474,39 +103739,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(560), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [19785] = 3, + [19918] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1537), 28, + ACTIONS(1483), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103535,7 +103771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1539), 28, + ACTIONS(1485), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103564,10 +103800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19849] = 3, + [19982] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1517), 28, + ACTIONS(1269), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103596,7 +103832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1519), 28, + ACTIONS(1271), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103625,10 +103861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19913] = 3, + [20046] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1509), 28, + ACTIONS(1533), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103657,7 +103893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1511), 28, + ACTIONS(1535), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103686,10 +103922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [19977] = 3, + [20110] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1497), 28, + ACTIONS(1487), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103718,39 +103954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1499), 28, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [20041] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(550), 28, + ACTIONS(1489), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103779,7 +103983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(552), 28, + [20174] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1407), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103808,10 +104015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [20105] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(546), 28, + ACTIONS(1409), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103840,7 +104044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(548), 28, + [20238] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1423), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103869,10 +104076,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [20169] = 3, + ACTIONS(1425), 28, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [20302] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1477), 28, + ACTIONS(1427), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103901,7 +104137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1479), 28, + ACTIONS(1429), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103930,10 +104166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20233] = 3, + [20366] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1433), 28, + ACTIONS(1431), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -103962,7 +104198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1435), 28, + ACTIONS(1433), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -103991,10 +104227,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20297] = 3, + [20430] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(506), 28, + ACTIONS(1491), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1493), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104023,12 +104288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(508), 28, + [20494] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN, + STATE(1207), 1, + sym_FnCallArguments, + ACTIONS(1295), 27, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -104052,10 +104323,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [20361] = 3, + ACTIONS(1297), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [20562] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1425), 28, + ACTIONS(1563), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104084,7 +104383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1427), 28, + ACTIONS(1565), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104113,18 +104412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20425] = 5, + [20626] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1866), 1, - anon_sym_LPAREN, - STATE(1174), 1, - sym_FnCallArguments, - ACTIONS(1294), 27, + ACTIONS(1555), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -104148,7 +104444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 27, + ACTIONS(1557), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104162,6 +104458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_DOT, @@ -104176,10 +104473,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20493] = 3, + [20690] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(510), 28, + ACTIONS(516), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(518), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104208,7 +104534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(512), 28, + [20754] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1319), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104237,10 +104566,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [20557] = 3, + ACTIONS(1321), 28, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [20818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1371), 28, + ACTIONS(1467), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104269,7 +104627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1373), 28, + ACTIONS(1469), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104298,10 +104656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20621] = 3, + [20882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1421), 28, + ACTIONS(1463), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104330,7 +104688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1423), 28, + ACTIONS(1465), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104359,71 +104717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20685] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1871), 21, - anon_sym_BANG, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1869), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [20749] = 3, + [20946] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1473), 28, + ACTIONS(1391), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104452,7 +104749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1475), 28, + ACTIONS(1393), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104481,10 +104778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20813] = 3, + [21010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1409), 28, + ACTIONS(1383), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104513,7 +104810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1411), 28, + ACTIONS(1385), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104542,10 +104839,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20877] = 3, + [21074] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1397), 28, + ACTIONS(1395), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104574,7 +104871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1399), 28, + ACTIONS(1397), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104603,10 +104900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [20941] = 3, + [21138] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1379), 28, + ACTIONS(1471), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104635,7 +104932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1381), 28, + ACTIONS(1473), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104664,10 +104961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [21005] = 3, + [21202] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1363), 28, + ACTIONS(1475), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104696,7 +104993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1365), 28, + ACTIONS(1477), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104725,10 +105022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [21069] = 3, + [21266] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1529), 28, + ACTIONS(1517), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104757,7 +105054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1531), 28, + ACTIONS(1519), 28, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104786,71 +105083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [21133] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1875), 21, - anon_sym_BANG, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1873), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [21197] = 3, + [21330] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(506), 27, + ACTIONS(1369), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104878,7 +105114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(508), 28, + ACTIONS(1367), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -104907,70 +105143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21260] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1879), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1877), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [21323] = 3, + [21393] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1315), 27, + ACTIONS(1493), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -104998,7 +105174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1313), 28, + ACTIONS(1491), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105027,10 +105203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21386] = 3, + [21456] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1423), 27, + ACTIONS(1321), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105058,7 +105234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1421), 28, + ACTIONS(1319), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105087,10 +105263,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21449] = 3, + [21519] = 23, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1411), 27, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1875), 1, + anon_sym_else, + ACTIONS(1877), 1, + anon_sym_or, + ACTIONS(1879), 1, + anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1264), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1623), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1625), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105101,56 +105340,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, + aux_sym_IDENTIFIER_token1, + [21622] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1875), 1, + anon_sym_else, + ACTIONS(1877), 1, anon_sym_or, + ACTIONS(1879), 1, anon_sym_and, - anon_sym_DOT, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1268), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1409), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(1593), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1595), 13, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + aux_sym_IDENTIFIER_token1, + [21725] = 23, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1875), 1, + anon_sym_else, + ACTIONS(1877), 1, + anon_sym_or, + ACTIONS(1879), 1, + anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1267), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, + ACTIONS(1635), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - [21512] = 3, + ACTIONS(1637), 13, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + aux_sym_IDENTIFIER_token1, + [21828] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1399), 27, + ACTIONS(1557), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105178,7 +105534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1397), 28, + ACTIONS(1555), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105207,10 +105563,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21575] = 3, + [21891] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1821), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1819), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [21954] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1407), 27, + ACTIONS(1561), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105238,7 +105654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1405), 28, + ACTIONS(1559), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105267,10 +105683,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21638] = 3, + [22017] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1419), 27, + ACTIONS(1523), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105298,7 +105714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1417), 28, + ACTIONS(1521), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105327,10 +105743,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21701] = 3, + [22080] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1887), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1885), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [22143] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1381), 27, + ACTIONS(1469), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105358,7 +105834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1379), 28, + ACTIONS(1467), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105387,10 +105863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21764] = 3, + [22206] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1365), 27, + ACTIONS(1509), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105418,7 +105894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1363), 28, + ACTIONS(1507), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105447,10 +105923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [21827] = 3, + [22269] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1883), 20, + ACTIONS(1891), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -105469,9 +105945,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1881), 35, + ACTIONS(1889), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -105507,133 +105983,130 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [21890] = 3, - ACTIONS(95), 1, + [22332] = 3, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1887), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1885), 35, + ACTIONS(1565), 27, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, + anon_sym_export, anon_sym_extern, anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [21953] = 23, + ACTIONS(1563), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [22395] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1889), 1, - anon_sym_else, - ACTIONS(1891), 1, + ACTIONS(1473), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, anon_sym_or, - ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, - sym_MultiplyOp, - STATE(328), 1, - sym_AdditionOp, - STATE(329), 1, - sym_BitShiftOp, - STATE(336), 1, - sym_BitwiseOp, - STATE(337), 1, - sym_CompareOp, - STATE(1261), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1471), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1617), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1619), 13, + [22458] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1501), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105644,13 +106117,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, + anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [22056] = 3, + ACTIONS(1499), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [22521] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1543), 27, + ACTIONS(1397), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105678,7 +106194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1541), 28, + ACTIONS(1395), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105707,10 +106223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22119] = 3, + [22584] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1491), 27, + ACTIONS(1465), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105738,7 +106254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1489), 28, + ACTIONS(1463), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105767,10 +106283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22182] = 3, + [22647] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1559), 27, + ACTIONS(1519), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105798,7 +106314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1557), 28, + ACTIONS(1517), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105827,10 +106343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22245] = 3, + [22710] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1901), 20, + ACTIONS(1895), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -105849,9 +106365,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1899), 35, + ACTIONS(1893), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -105887,10 +106403,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [22308] = 3, + [22773] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1495), 27, + ACTIONS(1445), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105918,7 +106434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1493), 28, + ACTIONS(1443), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -105947,10 +106463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22371] = 3, + [22836] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1563), 27, + ACTIONS(1317), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -105978,7 +106494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1561), 28, + ACTIONS(1315), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106007,10 +106523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22434] = 3, + [22899] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1507), 27, + ACTIONS(1413), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106038,7 +106554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1505), 28, + ACTIONS(1411), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106067,10 +106583,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22497] = 3, + [22962] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1439), 27, + ACTIONS(1527), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106098,7 +106614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1437), 28, + ACTIONS(1525), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106127,10 +106643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22560] = 3, + [23025] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1905), 20, + ACTIONS(1899), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -106149,9 +106665,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1903), 35, + ACTIONS(1897), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -106187,70 +106703,388 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [22623] = 3, - ACTIONS(3), 1, + [23088] = 21, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1329), 27, - anon_sym_pub, - anon_sym_test, + ACTIONS(131), 1, + anon_sym_EQ, + ACTIONS(1611), 1, + anon_sym_orelse, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1619), 1, + anon_sym_PLUS_PLUS, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + STATE(239), 1, + sym_AssignOp, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1621), 2, + anon_sym_PIPE_PIPE, + anon_sym_STAR_STAR, + ACTIONS(1603), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1615), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1605), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1617), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(129), 18, + anon_sym_SEMI, + anon_sym_STAR_EQ, + anon_sym_STAR_PIPE_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_PLUS_PIPE_EQ, + anon_sym_DASH_EQ, + anon_sym_DASH_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_LT_LT_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_STAR_PERCENT_EQ, + anon_sym_PLUS_PERCENT_EQ, + anon_sym_DASH_PERCENT_EQ, + [23187] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1903), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1901), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [23250] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1907), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1905), 35, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [23313] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1911), 20, anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1909), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - ACTIONS(1327), 28, - ts_builtin_sym_end, - anon_sym_COMMA, + [23376] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1915), 20, + anon_sym_BANG, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1913), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [23439] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1755), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - [22686] = 3, + ACTIONS(1753), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [23502] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1555), 27, + ACTIONS(1381), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106278,7 +107112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1553), 28, + ACTIONS(1379), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106307,10 +107141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22749] = 3, + [23565] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1325), 27, + ACTIONS(1457), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106338,7 +107172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1323), 28, + ACTIONS(1455), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106367,10 +107201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22812] = 3, + [23628] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1483), 27, + ACTIONS(1393), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106398,7 +107232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1481), 28, + ACTIONS(1391), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106427,10 +107261,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [22875] = 3, + [23691] = 22, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1353), 27, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1877), 1, + anon_sym_or, + ACTIONS(1879), 1, + anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1254), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1623), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1625), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106441,56 +107336,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, + aux_sym_IDENTIFIER_token1, + [23792] = 22, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1877), 1, anon_sym_or, + ACTIONS(1879), 1, anon_sym_and, - anon_sym_DOT, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1252), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1351), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1593), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [22938] = 3, + ACTIONS(1595), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + aux_sym_IDENTIFIER_token1, + [23893] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1451), 27, + ACTIONS(1361), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106518,7 +107450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1449), 28, + ACTIONS(1359), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106547,7 +107479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23001] = 3, + [23956] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1349), 27, @@ -106607,10 +107539,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23064] = 3, + [24019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1361), 27, + ACTIONS(1341), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106638,7 +107570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1359), 28, + ACTIONS(1339), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106667,130 +107599,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23127] = 3, - ACTIONS(95), 1, + [24082] = 22, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1757), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1755), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1877), 1, + anon_sym_or, + ACTIONS(1879), 1, + anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + STATE(1255), 1, + sym__ElseExprTail, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [23190] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1909), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1635), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, anon_sym_AT, - ACTIONS(1907), 35, + ACTIONS(1637), 14, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, + anon_sym_export, anon_sym_extern, anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, + anon_sym_const, + anon_sym_var, + anon_sym_else, aux_sym_IDENTIFIER_token1, - [23253] = 3, + [24183] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1369), 27, + ACTIONS(1325), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -106818,7 +107709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1367), 28, + ACTIONS(1323), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -106847,10 +107738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23316] = 3, + [24246] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1913), 20, + ACTIONS(1919), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -106869,9 +107760,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1911), 35, + ACTIONS(1917), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -106907,10 +107798,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [23379] = 3, + [24309] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1917), 20, + ACTIONS(1849), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -106929,9 +107820,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1915), 35, + ACTIONS(1847), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -106967,190 +107858,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [23442] = 3, + [24372] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1515), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1513), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [23505] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1333), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1331), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [23568] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1527), 27, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1525), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - [23631] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1547), 27, + ACTIONS(518), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107178,7 +107889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1545), 28, + ACTIONS(516), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107207,10 +107918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23694] = 3, + [24435] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1377), 27, + ACTIONS(1433), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107238,7 +107949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1375), 28, + ACTIONS(1431), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107267,10 +107978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23757] = 3, + [24498] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1459), 27, + ACTIONS(1429), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107298,7 +108009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1457), 28, + ACTIONS(1427), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107327,10 +108038,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23820] = 3, + [24561] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1391), 27, + ACTIONS(1353), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107358,7 +108069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1389), 28, + ACTIONS(1351), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107387,70 +108098,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [23883] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1921), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1919), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [23946] = 3, + [24624] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1395), 27, + ACTIONS(1425), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107478,7 +108129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1393), 28, + ACTIONS(1423), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107507,10 +108158,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24009] = 3, + [24687] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1415), 27, + ACTIONS(1417), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107538,7 +108189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1413), 28, + ACTIONS(1415), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107567,10 +108218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24072] = 3, + [24750] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1551), 27, + ACTIONS(1569), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107598,7 +108249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1549), 28, + ACTIONS(1567), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107627,10 +108278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24135] = 3, + [24813] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1431), 27, + ACTIONS(1409), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107658,7 +108309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1429), 28, + ACTIONS(1407), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107687,10 +108338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24198] = 3, + [24876] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1487), 27, + ACTIONS(510), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107718,7 +108369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1485), 28, + ACTIONS(512), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107747,10 +108398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24261] = 3, + [24939] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1337), 27, + ACTIONS(1481), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107778,7 +108429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1335), 28, + ACTIONS(1479), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107807,10 +108458,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24324] = 3, + [25002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1475), 27, + ACTIONS(1437), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107838,7 +108489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1473), 28, + ACTIONS(1435), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107867,10 +108518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24387] = 3, + [25065] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1531), 27, + ACTIONS(1401), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -107898,7 +108549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1529), 28, + ACTIONS(1399), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -107927,70 +108578,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24450] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1858), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1856), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [24513] = 3, + [25128] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1571), 27, + ACTIONS(1389), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108018,7 +108609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1569), 28, + ACTIONS(1387), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108047,10 +108638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24576] = 3, + [25191] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1523), 27, + ACTIONS(1365), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108078,7 +108669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1521), 28, + ACTIONS(1363), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108107,10 +108698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24639] = 3, + [25254] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1463), 27, + ACTIONS(1345), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108138,7 +108729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1461), 28, + ACTIONS(1343), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108167,70 +108758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24702] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1862), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1860), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [24765] = 3, + [25317] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1427), 27, + ACTIONS(550), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108258,7 +108789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1425), 28, + ACTIONS(552), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108287,10 +108818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24828] = 3, + [25380] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(522), 27, + ACTIONS(1489), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108318,7 +108849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(524), 28, + ACTIONS(1487), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108347,150 +108878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [24891] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1925), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_DASH_PERCENT, - anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1923), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [24954] = 23, + [25443] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1889), 1, - anon_sym_else, - ACTIONS(1891), 1, - anon_sym_or, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, - sym_MultiplyOp, - STATE(328), 1, - sym_AdditionOp, - STATE(329), 1, - sym_BitShiftOp, - STATE(336), 1, - sym_BitwiseOp, - STATE(337), 1, - sym_CompareOp, - STATE(1263), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1587), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1589), 13, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - aux_sym_IDENTIFIER_token1, - [25057] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1471), 27, + ACTIONS(1337), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108518,7 +108909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1469), 28, + ACTIONS(1335), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108547,10 +108938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25120] = 3, + [25506] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1321), 27, + ACTIONS(1477), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108578,7 +108969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1319), 28, + ACTIONS(1475), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108607,10 +108998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25183] = 3, + [25569] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1264), 27, + ACTIONS(1535), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108638,7 +109029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1262), 28, + ACTIONS(1533), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108667,10 +109058,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25246] = 3, + [25632] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1435), 27, + ACTIONS(1271), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108698,7 +109089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1433), 28, + ACTIONS(1269), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108727,10 +109118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25309] = 3, + [25695] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1455), 27, + ACTIONS(1485), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108758,7 +109149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1453), 28, + ACTIONS(1483), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108787,70 +109178,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25372] = 3, - ACTIONS(95), 1, + [25758] = 3, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1929), 20, + ACTIONS(1377), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, anon_sym_BANG, - anon_sym_LBRACE, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1375), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, anon_sym_AT, - ACTIONS(1927), 35, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [25435] = 3, + [25821] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(558), 27, + ACTIONS(506), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108878,7 +109269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(560), 28, + ACTIONS(508), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -108907,70 +109298,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25498] = 3, - ACTIONS(95), 1, + [25884] = 3, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1933), 20, + ACTIONS(546), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, anon_sym_BANG, - anon_sym_LBRACE, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(548), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, anon_sym_AT, - ACTIONS(1931), 35, + [25947] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1385), 27, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, + anon_sym_export, anon_sym_extern, anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [25561] = 3, + ACTIONS(1383), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [26010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1503), 27, + ACTIONS(1373), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -108998,7 +109449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1501), 28, + ACTIONS(1371), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109027,10 +109478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25624] = 3, + [26073] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(550), 27, + ACTIONS(538), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109058,7 +109509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(552), 28, + ACTIONS(540), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109087,10 +109538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25687] = 3, + [26136] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1479), 27, + ACTIONS(1357), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109118,7 +109569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1477), 28, + ACTIONS(1355), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109147,10 +109598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25750] = 3, + [26199] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(546), 27, + ACTIONS(534), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109178,7 +109629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(548), 28, + ACTIONS(536), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109207,10 +109658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25813] = 3, + [26262] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1443), 27, + ACTIONS(1531), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109238,7 +109689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1441), 28, + ACTIONS(1529), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109267,10 +109718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25876] = 3, + [26325] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1499), 27, + ACTIONS(1329), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109298,7 +109749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1497), 28, + ACTIONS(1327), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109327,10 +109778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [25939] = 3, + [26388] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1567), 27, + ACTIONS(1441), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109358,7 +109809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1565), 28, + ACTIONS(1439), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109387,10 +109838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26002] = 3, + [26451] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1345), 27, + ACTIONS(1449), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109418,7 +109869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1343), 28, + ACTIONS(1447), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109447,10 +109898,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26065] = 3, + [26514] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1373), 27, + ACTIONS(1453), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109478,7 +109929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1371), 28, + ACTIONS(1451), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109507,10 +109958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26128] = 3, + [26577] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1937), 20, + ACTIONS(1923), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -109529,9 +109980,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1935), 35, + ACTIONS(1921), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -109567,10 +110018,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [26191] = 3, + [26640] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1511), 27, + ACTIONS(1405), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109598,7 +110049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1509), 28, + ACTIONS(1403), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109627,10 +110078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26254] = 3, + [26703] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1519), 27, + ACTIONS(1461), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109658,7 +110109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1517), 28, + ACTIONS(1459), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109687,10 +110138,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26317] = 3, + [26766] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(510), 27, + ACTIONS(1505), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109718,7 +110169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(512), 28, + ACTIONS(1503), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109747,70 +110198,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26380] = 3, - ACTIONS(3), 1, + [26829] = 3, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1357), 27, - anon_sym_pub, - anon_sym_test, + ACTIONS(1927), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1925), 35, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [26892] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1931), 20, anon_sym_BANG, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, + anon_sym_LBRACE, anon_sym_DOT, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1929), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - ACTIONS(1355), 28, - ts_builtin_sym_end, - anon_sym_COMMA, + [26955] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1935), 20, + anon_sym_BANG, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1933), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [27018] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1939), 20, + anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_DASH_PERCENT, + anon_sym_STAR_STAR, + anon_sym_TILDE, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - [26443] = 3, + ACTIONS(1937), 35, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_nosuspend, + anon_sym_break, + anon_sym_continue, + anon_sym_resume, + anon_sym_return, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_asm, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_try, + anon_sym_await, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [27081] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1539), 27, + ACTIONS(1515), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109838,7 +110469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1537), 28, + ACTIONS(1513), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109867,10 +110498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26506] = 3, + [27144] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1941), 20, + ACTIONS(1943), 20, anon_sym_BANG, anon_sym_LBRACE, anon_sym_DOT, @@ -109889,9 +110520,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1939), 35, + ACTIONS(1941), 35, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -109927,10 +110558,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [26569] = 3, + [27207] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1535), 27, + ACTIONS(1421), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -109958,7 +110589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1533), 28, + ACTIONS(1419), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -109987,10 +110618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26632] = 3, + [27270] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1341), 27, + ACTIONS(1539), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110018,7 +110649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1339), 28, + ACTIONS(1537), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -110047,10 +110678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26695] = 3, + [27333] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(518), 27, + ACTIONS(1549), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110078,7 +110709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(516), 28, + ACTIONS(1547), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -110107,90 +110738,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26758] = 23, + [27396] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1889), 1, - anon_sym_else, - ACTIONS(1891), 1, + ACTIONS(1553), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, anon_sym_or, - ACTIONS(1893), 1, anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, - sym_MultiplyOp, - STATE(328), 1, - sym_AdditionOp, - STATE(329), 1, - sym_BitShiftOp, - STATE(336), 1, - sym_BitwiseOp, - STATE(337), 1, - sym_CompareOp, - STATE(1269), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, + anon_sym_DOT, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1551), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1625), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1627), 13, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - aux_sym_IDENTIFIER_token1, - [26861] = 3, + [27459] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1447), 27, + ACTIONS(1497), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110218,7 +110829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1445), 28, + ACTIONS(1495), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -110247,88 +110858,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [26924] = 21, - ACTIONS(95), 1, + [27522] = 3, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(131), 1, - anon_sym_EQ, - ACTIONS(1603), 1, - anon_sym_orelse, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1611), 1, - anon_sym_PLUS_PLUS, - ACTIONS(1759), 1, + ACTIONS(1573), 27, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_BANG, + anon_sym_const, + anon_sym_var, anon_sym_or, - ACTIONS(1761), 1, anon_sym_and, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - STATE(238), 1, - sym_AssignOp, - ACTIONS(1601), 2, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, - ACTIONS(1613), 2, - anon_sym_PIPE_PIPE, - anon_sym_STAR_STAR, - ACTIONS(1595), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1607), 3, + anon_sym_orelse, + anon_sym_catch, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + ACTIONS(1571), 28, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1597), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1609), 6, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(129), 18, - anon_sym_SEMI, - anon_sym_STAR_EQ, - anon_sym_STAR_PIPE_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_PLUS_PIPE_EQ, - anon_sym_DASH_EQ, - anon_sym_DASH_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_LT_LT_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_STAR_PERCENT_EQ, - anon_sym_PLUS_PERCENT_EQ, - anon_sym_DASH_PERCENT_EQ, - [27023] = 3, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + [27585] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1403), 27, + ACTIONS(1333), 27, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110356,7 +110949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - ACTIONS(1401), 28, + ACTIONS(1331), 28, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_LBRACE, @@ -110385,10 +110978,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - [27086] = 3, + [27648] = 17, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1467), 27, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 9, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1679), 18, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110399,117 +111043,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_threadlocal, anon_sym_usingnamespace, anon_sym_fn, - anon_sym_BANG, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, - anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + aux_sym_IDENTIFIER_token1, + [27738] = 19, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + ACTIONS(1603), 2, anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - ACTIONS(1465), 28, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, + ACTIONS(1677), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - [27149] = 22, + ACTIONS(1679), 16, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + aux_sym_IDENTIFIER_token1, + [27832] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, - anon_sym_or, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - STATE(1256), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1587), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1589), 14, + ACTIONS(1677), 11, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1679), 21, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110523,72 +111188,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, aux_sym_IDENTIFIER_token1, - [27250] = 22, + [27916] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, + ACTIONS(1877), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - STATE(1257), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1617), 5, + ACTIONS(1689), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1619), 14, + ACTIONS(1691), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110603,71 +111273,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_else, aux_sym_IDENTIFIER_token1, - [27351] = 22, + [28014] = 12, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1891), 1, - anon_sym_or, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - STATE(1255), 1, - sym__ElseExprTail, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1625), 5, + ACTIONS(1677), 13, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1627), 14, + ACTIONS(1679), 22, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110681,104 +111332,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, aux_sym_IDENTIFIER_token1, - [27452] = 3, - ACTIONS(95), 1, + [28094] = 8, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1945), 20, - anon_sym_BANG, - anon_sym_LBRACE, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + ACTIONS(1705), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + sym_doc_comment, anon_sym_AT, - ACTIONS(1943), 35, + ACTIONS(1707), 26, + anon_sym_pub, + anon_sym_test, anon_sym_comptime, + anon_sym_export, anon_sym_extern, anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, anon_sym_fn, - anon_sym_nosuspend, - anon_sym_break, - anon_sym_continue, - anon_sym_resume, - anon_sym_return, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_asm, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_try, - anon_sym_await, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [27515] = 14, + [28166] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 11, + ACTIONS(1677), 18, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -110788,9 +111437,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_AMP, anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 21, + ACTIONS(1679), 24, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110811,70 +111467,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_orelse, anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_IDENTIFIER_token1, - [27599] = 21, + [28242] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, + ACTIONS(1877), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1727), 5, + ACTIONS(1745), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1729), 14, + ACTIONS(1747), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110889,38 +111548,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_else, aux_sym_IDENTIFIER_token1, - [27697] = 12, + [28340] = 8, ACTIONS(3), 1, sym_line_comment, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1687), 13, + ACTIONS(1677), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -110932,9 +111573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 22, + ACTIONS(1679), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -110951,54 +111602,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_orelse, anon_sym_catch, anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [27777] = 10, + [28412] = 20, ACTIONS(3), 1, sym_line_comment, - STATE(320), 1, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1879), 1, + anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - ACTIONS(1597), 2, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1687), 18, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 24, + ACTIONS(1679), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111013,79 +111687,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_else, anon_sym_or, + aux_sym_IDENTIFIER_token1, + [28508] = 21, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1877), 1, + anon_sym_or, + ACTIONS(1879), 1, anon_sym_and, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(279), 1, + sym_MultiplyOp, + STATE(281), 1, + sym_AdditionOp, + STATE(284), 1, + sym_BitShiftOp, + STATE(298), 1, + sym_BitwiseOp, + STATE(299), 1, + sym_CompareOp, + ACTIONS(1603), 2, anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(129), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(131), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, aux_sym_IDENTIFIER_token1, - [27853] = 21, + [28606] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, + ACTIONS(1877), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(1879), 1, anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + STATE(279), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(281), 1, sym_AdditionOp, - STATE(329), 1, + STATE(284), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(298), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(299), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1691), 5, + ACTIONS(1697), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1693), 14, + ACTIONS(1699), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111100,61 +111842,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_else, aux_sym_IDENTIFIER_token1, - [27951] = 17, + [28704] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1611), 5, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 9, + ACTIONS(1945), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 18, + ACTIONS(1947), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111167,71 +111917,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, aux_sym_IDENTIFIER_token1, - [28041] = 19, + [28801] = 19, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, + ACTIONS(1677), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 16, + ACTIONS(1679), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111244,24 +111989,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, aux_sym_IDENTIFIER_token1, - [28135] = 8, + [28894] = 8, ACTIONS(3), 1, sym_line_comment, - STATE(320), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1695), 23, + ACTIONS(1677), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -111285,7 +112029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1697), 26, + ACTIONS(1679), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111298,7 +112042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -111312,20 +112055,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [28207] = 8, + [28965] = 21, ACTIONS(3), 1, sym_line_comment, - STATE(320), 1, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1881), 1, + anon_sym_catch, + ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, + sym_CompareOp, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1689), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1691), 13, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + aux_sym_IDENTIFIER_token1, + [29062] = 8, + ACTIONS(3), 1, + sym_line_comment, + STATE(195), 1, + sym_MultiplyOp, + STATE(197), 1, + sym_AdditionOp, + STATE(199), 1, + sym_BitShiftOp, + STATE(203), 1, + sym_BitwiseOp, + STATE(204), 1, sym_CompareOp, - ACTIONS(1687), 23, + ACTIONS(1705), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -111349,7 +112168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 26, + ACTIONS(1707), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111362,7 +112181,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -111376,69 +112194,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [28279] = 21, + [29133] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, + ACTIONS(1881), 1, + anon_sym_catch, + ACTIONS(1949), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(1951), 1, anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1679), 5, + ACTIONS(1953), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1681), 14, + ACTIONS(1955), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111451,71 +112269,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, aux_sym_IDENTIFIER_token1, - [28377] = 21, + [29230] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1891), 1, + ACTIONS(1881), 1, + anon_sym_catch, + ACTIONS(1949), 1, anon_sym_or, - ACTIONS(1893), 1, + ACTIONS(1951), 1, anon_sym_and, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(320), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(129), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(131), 14, + ACTIONS(1957), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1959), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111528,69 +112345,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, aux_sym_IDENTIFIER_token1, - [28475] = 20, + [29327] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1893), 1, - anon_sym_and, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(320), 1, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(328), 1, + STATE(197), 1, sym_AdditionOp, - STATE(329), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(336), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(337), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, + ACTIONS(1677), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 15, + ACTIONS(1679), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111603,72 +112419,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, aux_sym_IDENTIFIER_token1, - [28571] = 21, + [29422] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1679), 5, + ACTIONS(1961), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1681), 13, + ACTIONS(1963), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111682,67 +112497,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [28668] = 20, + [29519] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, + ACTIONS(1965), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 14, + ACTIONS(1967), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111755,63 +112572,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_or, aux_sym_IDENTIFIER_token1, - [28763] = 17, + [29616] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - STATE(226), 1, + ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1603), 2, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1611), 5, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 9, + ACTIONS(1969), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 17, + ACTIONS(1971), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111824,74 +112648,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_LT, - anon_sym_GT, aux_sym_IDENTIFIER_token1, - [28852] = 21, + [29713] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(129), 5, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1951), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1953), 13, + ACTIONS(131), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111905,69 +112725,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [28949] = 21, + [29810] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1727), 5, + ACTIONS(1973), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1729), 13, + ACTIONS(1975), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -111981,69 +112801,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [29046] = 21, + [29907] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 18, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1955), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1957), 13, + ACTIONS(1679), 23, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112056,56 +112855,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, aux_sym_IDENTIFIER_token1, - [29143] = 14, + [29982] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(226), 1, + ACTIONS(1881), 1, + anon_sym_catch, + ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1597), 2, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1611), 5, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 11, + ACTIONS(1745), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 20, + ACTIONS(1747), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112118,60 +112941,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, aux_sym_IDENTIFIER_token1, - [29226] = 12, + [30079] = 21, ACTIONS(3), 1, sym_line_comment, - STATE(226), 1, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1881), 1, + anon_sym_catch, + ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, + anon_sym_and, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1597), 2, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1611), 2, + anon_sym_AMP, + anon_sym_CARET, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 5, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 13, + ACTIONS(1977), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 21, + ACTIONS(1979), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112184,38 +113017,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, aux_sym_IDENTIFIER_token1, - [29305] = 10, + [30176] = 12, ACTIONS(3), 1, sym_line_comment, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 18, + ACTIONS(1677), 13, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -112227,14 +113061,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 23, + ACTIONS(1679), 21, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112255,47 +113084,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_orelse, anon_sym_catch, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, aux_sym_IDENTIFIER_token1, - [29380] = 8, + [30255] = 17, ACTIONS(3), 1, sym_line_comment, - STATE(226), 1, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1881), 1, + anon_sym_catch, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1687), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1603), 2, + anon_sym_PIPE, + anon_sym_orelse, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, + ACTIONS(1677), 9, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 25, + ACTIONS(1679), 17, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112310,80 +113154,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_or, anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [29451] = 21, + [30344] = 14, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1959), 5, + ACTIONS(1677), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, sym_doc_comment, anon_sym_AT, - ACTIONS(1961), 13, + ACTIONS(1679), 20, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112396,70 +113218,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, aux_sym_IDENTIFIER_token1, - [29548] = 21, + [30427] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1963), 5, + ACTIONS(1981), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1965), 13, + ACTIONS(1983), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112473,69 +113302,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [29645] = 21, + [30524] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1895), 1, + ACTIONS(1881), 1, anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, ACTIONS(1949), 1, + anon_sym_or, + ACTIONS(1951), 1, anon_sym_and, - STATE(226), 1, + STATE(195), 1, sym_MultiplyOp, - STATE(229), 1, + STATE(197), 1, sym_AdditionOp, - STATE(230), 1, + STATE(199), 1, sym_BitShiftOp, - STATE(233), 1, + STATE(203), 1, sym_BitwiseOp, - STATE(236), 1, + STATE(204), 1, sym_CompareOp, - ACTIONS(1595), 2, + ACTIONS(1603), 2, anon_sym_PIPE, anon_sym_orelse, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, + ACTIONS(1611), 2, anon_sym_AMP, anon_sym_CARET, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1967), 5, + ACTIONS(1697), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1969), 13, + ACTIONS(1699), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112549,69 +113378,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [29742] = 21, + [30621] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1785), 1, + anon_sym_LBRACE, + STATE(1259), 1, + sym_InitList, + ACTIONS(1541), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1971), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1973), 13, + ACTIONS(1543), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112624,70 +113422,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - aux_sym_IDENTIFIER_token1, - [29839] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, + anon_sym_else, anon_sym_or, - ACTIONS(1949), 1, anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [30684] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1985), 1, + anon_sym_BANG, + ACTIONS(1529), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1691), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1693), 13, + ACTIONS(1531), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112700,66 +113479,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - aux_sym_IDENTIFIER_token1, - [29936] = 19, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, + anon_sym_else, + anon_sym_or, + anon_sym_and, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [30745] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1987), 1, + anon_sym_COLON, + STATE(1258), 1, + sym_BreakLabel, + ACTIONS(35), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1689), 15, + ACTIONS(49), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112772,23 +113537,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_or, anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30029] = 8, + [30808] = 5, ACTIONS(3), 1, sym_line_comment, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1695), 23, + ACTIONS(1873), 1, + anon_sym_LBRACE, + STATE(1270), 1, + sym_InitList, + ACTIONS(1541), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -112812,7 +113582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1697), 25, + ACTIONS(1543), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112838,69 +113608,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30100] = 21, + [30870] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, - anon_sym_or, - ACTIONS(1949), 1, - anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, - anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + ACTIONS(1989), 1, + anon_sym_COLON, + STATE(1262), 1, + sym_BreakLabel, + ACTIONS(35), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1975), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1977), 13, + ACTIONS(49), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112913,70 +113652,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - aux_sym_IDENTIFIER_token1, - [30197] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, anon_sym_or, - ACTIONS(1949), 1, anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [30932] = 4, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1991), 1, + anon_sym_BANG, + ACTIONS(1529), 24, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1979), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1981), 13, + ACTIONS(1531), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -112989,70 +113708,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - aux_sym_IDENTIFIER_token1, - [30294] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, anon_sym_or, - ACTIONS(1949), 1, anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [30992] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1809), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1983), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1985), 13, + ACTIONS(1811), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113065,70 +113761,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - aux_sym_IDENTIFIER_token1, - [30391] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1895), 1, - anon_sym_catch, - ACTIONS(1947), 1, + anon_sym_else, anon_sym_or, - ACTIONS(1949), 1, anon_sym_and, - STATE(226), 1, - sym_MultiplyOp, - STATE(229), 1, - sym_AdditionOp, - STATE(230), 1, - sym_BitShiftOp, - STATE(233), 1, - sym_BitwiseOp, - STATE(236), 1, - sym_CompareOp, - ACTIONS(1595), 2, anon_sym_PIPE, - anon_sym_orelse, - ACTIONS(1597), 2, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1603), 2, - anon_sym_AMP, - anon_sym_CARET, - ACTIONS(1609), 2, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1599), 4, + anon_sym_SLASH, + aux_sym_IDENTIFIER_token1, + [31049] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1831), 23, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(129), 5, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(131), 13, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1833), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113141,15 +113815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_or, + anon_sym_and, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_orelse, + anon_sym_catch, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30488] = 5, + [31106] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1987), 1, - anon_sym_COLON, - STATE(1252), 1, - sym_BreakLabel, - ACTIONS(35), 23, + ACTIONS(1827), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113173,7 +113856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(49), 26, + ACTIONS(1829), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113200,15 +113883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30551] = 4, + [31163] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1989), 1, - anon_sym_BANG, - ACTIONS(1371), 24, + ACTIONS(530), 23, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -113230,7 +113910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1373), 26, + ACTIONS(532), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113257,14 +113937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30612] = 5, + [31220] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, - STATE(1251), 1, - sym_InitList, - ACTIONS(1383), 23, + ACTIONS(1839), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113288,7 +113964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1385), 26, + ACTIONS(1841), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113315,180 +113991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30675] = 4, + [31277] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1991), 1, - anon_sym_BANG, - ACTIONS(1371), 24, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1373), 25, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [30735] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1864), 1, - anon_sym_LBRACE, - STATE(1259), 1, - sym_InitList, - ACTIONS(1383), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1385), 25, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [30797] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1993), 1, - anon_sym_COLON, - STATE(1266), 1, - sym_BreakLabel, - ACTIONS(35), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(49), 25, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [30859] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(542), 23, + ACTIONS(1835), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113512,7 +114018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(544), 26, + ACTIONS(1837), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113539,10 +114045,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30916] = 3, + [31334] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1846), 23, + ACTIONS(1855), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113566,7 +114072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1848), 26, + ACTIONS(1857), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113593,10 +114099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [30973] = 3, + [31391] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1850), 23, + ACTIONS(1813), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113620,7 +114126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1852), 26, + ACTIONS(1815), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113647,10 +114153,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31030] = 3, + [31448] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1839), 23, + ACTIONS(129), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113674,7 +114180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1841), 26, + ACTIONS(131), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113701,10 +114207,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31087] = 3, + [31505] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1806), 23, + ACTIONS(1851), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113728,7 +114234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1808), 26, + ACTIONS(1853), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113755,10 +114261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31144] = 3, + [31562] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(129), 23, + ACTIONS(1843), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113782,7 +114288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(131), 26, + ACTIONS(1845), 26, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113809,10 +114315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31201] = 3, + [31619] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1815), 23, + ACTIONS(1831), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113836,7 +114342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1817), 26, + ACTIONS(1833), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113849,7 +114355,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -113863,10 +114368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31258] = 3, + [31675] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1823), 23, + ACTIONS(129), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113890,7 +114395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1825), 26, + ACTIONS(131), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113903,7 +114408,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -113917,10 +114421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31315] = 3, + [31731] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1835), 23, + ACTIONS(1813), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113944,7 +114448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1837), 26, + ACTIONS(1815), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -113957,7 +114461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -113971,10 +114474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31372] = 3, + [31787] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1827), 23, + ACTIONS(1839), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -113998,7 +114501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1829), 26, + ACTIONS(1841), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114011,7 +114514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -114025,10 +114527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31429] = 3, + [31843] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1831), 23, + ACTIONS(530), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114052,7 +114554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1833), 26, + ACTIONS(532), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114065,7 +114567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_or, anon_sym_and, anon_sym_PIPE, @@ -114079,63 +114580,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31486] = 3, - ACTIONS(3), 1, + [31899] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(542), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, + ACTIONS(1995), 1, + anon_sym_COLON, + ACTIONS(1999), 1, + anon_sym_RBRACK, + ACTIONS(2001), 1, + anon_sym_c, + ACTIONS(1997), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(544), 25, - anon_sym_pub, - anon_sym_test, + ACTIONS(1993), 30, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_volatile, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_allowzero, + anon_sym_align, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [31542] = 3, + [31961] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1806), 23, + ACTIONS(1835), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114159,7 +114663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1808), 25, + ACTIONS(1837), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114185,10 +114689,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31598] = 3, + [32017] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1846), 23, + ACTIONS(1827), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114212,7 +114716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1848), 25, + ACTIONS(1829), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114238,10 +114742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31654] = 3, + [32073] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1831), 23, + ACTIONS(1809), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114265,7 +114769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1833), 25, + ACTIONS(1811), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114291,10 +114795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31710] = 3, + [32129] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1823), 23, + ACTIONS(1851), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114318,7 +114822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1825), 25, + ACTIONS(1853), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114344,10 +114848,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31766] = 3, + [32185] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1827), 23, + ACTIONS(1855), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114371,7 +114875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1829), 25, + ACTIONS(1857), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114397,10 +114901,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31822] = 3, + [32241] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1815), 23, + ACTIONS(1843), 23, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, @@ -114424,7 +114928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, sym_doc_comment, anon_sym_AT, - ACTIONS(1817), 25, + ACTIONS(1845), 25, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -114450,72 +114954,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_SLASH, aux_sym_IDENTIFIER_token1, - [31878] = 3, - ACTIONS(3), 1, + [32297] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1839), 23, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, + ACTIONS(2010), 1, + anon_sym_align, + STATE(1273), 2, + sym_ByteAlign, + aux_sym_PrefixTypeOp_repeat1, + ACTIONS(2005), 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2008), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - sym_doc_comment, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1841), 25, - anon_sym_pub, - anon_sym_test, + ACTIONS(2003), 26, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [32358] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2019), 1, + anon_sym_align, + STATE(1273), 2, + sym_ByteAlign, + aux_sym_PrefixTypeOp_repeat1, + ACTIONS(2015), 3, anon_sym_const, - anon_sym_var, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2017), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2013), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [32419] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2019), 1, + anon_sym_align, + STATE(1274), 2, + sym_ByteAlign, + aux_sym_PrefixTypeOp_repeat1, + ACTIONS(2023), 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2025), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2021), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [32480] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2029), 18, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2027), 28, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_linksection, + anon_sym_callconv, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [32534] = 11, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2031), 1, + anon_sym_DOT, + ACTIONS(2033), 1, + anon_sym_LPAREN, + ACTIONS(2035), 1, + anon_sym_LBRACK, + STATE(1336), 1, + sym_FnCallArguments, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1338), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1220), 10, + anon_sym_BANG, anon_sym_or, - anon_sym_and, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [31934] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(129), 23, - ts_builtin_sym_end, + ACTIONS(1218), 26, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP, anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, @@ -114528,44 +115229,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, + [32604] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2041), 1, + anon_sym_align, + STATE(1281), 1, + aux_sym_PrefixTypeOp_repeat2, + ACTIONS(2039), 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2017), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(131), 25, - anon_sym_pub, - anon_sym_test, + ACTIONS(2013), 26, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_or, - anon_sym_and, - anon_sym_PIPE, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [31990] = 6, + [32664] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1997), 1, - anon_sym_COLON, - ACTIONS(2001), 1, - anon_sym_RBRACK, - ACTIONS(2003), 1, - anon_sym_c, - ACTIONS(1999), 15, + ACTIONS(2041), 1, + anon_sym_align, + STATE(1278), 1, + aux_sym_PrefixTypeOp_repeat2, + ACTIONS(2043), 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2025), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114579,14 +115308,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1995), 30, + ACTIONS(2021), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, - anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -114598,13 +115326,10 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, - anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, - anon_sym_allowzero, - anon_sym_align, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -114612,19 +115337,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32052] = 3, - ACTIONS(3), 1, + [32724] = 11, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(1850), 23, - ts_builtin_sym_end, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2031), 1, + anon_sym_DOT, + ACTIONS(2033), 1, + anon_sym_LPAREN, + ACTIONS(2035), 1, + anon_sym_LBRACK, + STATE(1326), 1, + sym_FnCallArguments, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1325), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1198), 10, + anon_sym_BANG, + anon_sym_or, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1196), 26, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP, anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, @@ -114637,47 +115396,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, + [32794] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2052), 1, + anon_sym_align, + STATE(1281), 1, + aux_sym_PrefixTypeOp_repeat2, + ACTIONS(2047), 3, + anon_sym_const, + anon_sym_volatile, + anon_sym_allowzero, + ACTIONS(2050), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1852), 25, - anon_sym_pub, - anon_sym_test, + ACTIONS(2045), 26, anon_sym_comptime, - anon_sym_export, anon_sym_extern, anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, anon_sym_fn, - anon_sym_const, - anon_sym_var, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [32854] = 11, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2031), 1, + anon_sym_DOT, + ACTIONS(2033), 1, + anon_sym_LPAREN, + ACTIONS(2035), 1, + anon_sym_LBRACK, + STATE(1315), 1, + sym_FnCallArguments, + STATE(1359), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1319), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1220), 10, + anon_sym_BANG, anon_sym_or, - anon_sym_and, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, - anon_sym_orelse, - anon_sym_catch, anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [32108] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1835), 23, - ts_builtin_sym_end, + ACTIONS(1218), 26, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_AMP, anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, @@ -114690,52 +115509,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1837), 25, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, + [32924] = 11, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2031), 1, + anon_sym_DOT, + ACTIONS(2033), 1, + anon_sym_LPAREN, + ACTIONS(2035), 1, + anon_sym_LBRACK, + STATE(1321), 1, + sym_FnCallArguments, + STATE(1359), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1320), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1198), 10, + anon_sym_BANG, anon_sym_or, - anon_sym_and, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1196), 26, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, anon_sym_orelse, anon_sym_catch, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - aux_sym_IDENTIFIER_token1, - [32164] = 6, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + [32994] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2011), 1, - anon_sym_align, - STATE(1272), 2, - sym_ByteAlign, - aux_sym_PrefixTypeOp_repeat1, - ACTIONS(2007), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2009), 15, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2059), 1, + anon_sym_anyframe, + ACTIONS(2062), 1, anon_sym_LBRACK, + ACTIONS(2065), 1, + anon_sym_STAR, + ACTIONS(2068), 1, anon_sym_STAR_STAR, + ACTIONS(2071), 1, anon_sym_QMARK, + STATE(1275), 1, + sym_SliceTypeStart, + STATE(1279), 1, + sym_PtrTypeStart, + STATE(1370), 1, + sym_ArrayTypeStart, + STATE(1284), 2, + sym_PrefixTypeOp, + aux_sym__TypeExpr_repeat1, + ACTIONS(2057), 12, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_SQUOTE, aux_sym_FLOAT_token1, aux_sym_FLOAT_token2, @@ -114744,9 +115601,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2005), 26, + ACTIONS(2055), 24, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -114755,7 +115612,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_error, anon_sym_false, anon_sym_null, - anon_sym_anyframe, anon_sym_true, anon_sym_undefined, anon_sym_unreachable, @@ -114765,7 +115621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_while, anon_sym_for, - anon_sym_STAR, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -114773,19 +115628,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32225] = 6, + [33066] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2011), 1, - anon_sym_align, - STATE(1270), 2, - sym_ByteAlign, - aux_sym_PrefixTypeOp_repeat1, - ACTIONS(2015), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2017), 15, + ACTIONS(1997), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114799,13 +115645,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2013), 26, + ACTIONS(1993), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, + anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -114817,10 +115664,13 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, + anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_allowzero, + anon_sym_align, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -114828,19 +115678,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32286] = 6, + [33119] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2026), 1, - anon_sym_align, - STATE(1272), 2, - sym_ByteAlign, - aux_sym_PrefixTypeOp_repeat1, - ACTIONS(2021), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2024), 15, + ACTIONS(2076), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114854,13 +115695,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2019), 26, + ACTIONS(2074), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, + anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -114872,10 +115714,13 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, + anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_allowzero, + anon_sym_align, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -114883,78 +115728,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32347] = 12, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2033), 1, - anon_sym_anyframe, - ACTIONS(2036), 1, - anon_sym_LBRACK, - ACTIONS(2039), 1, - anon_sym_STAR, - ACTIONS(2042), 1, - anon_sym_STAR_STAR, - ACTIONS(2045), 1, - anon_sym_QMARK, - STATE(1271), 1, - sym_SliceTypeStart, - STATE(1276), 1, - sym_PtrTypeStart, - STATE(1397), 1, - sym_ArrayTypeStart, - STATE(1273), 2, - sym_PrefixTypeOp, - aux_sym__TypeExpr_repeat1, - ACTIONS(2031), 12, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2029), 24, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [32419] = 6, + [33172] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2055), 1, - anon_sym_align, - STATE(1274), 1, - aux_sym_PrefixTypeOp_repeat2, - ACTIONS(2050), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2053), 15, + ACTIONS(2080), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -114968,13 +115745,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2048), 26, + ACTIONS(2078), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, + anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -114986,10 +115764,13 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, + anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_allowzero, + anon_sym_align, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -114997,28 +115778,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32479] = 11, + [33225] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2058), 1, + ACTIONS(1202), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(1204), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(1206), 1, anon_sym_LBRACK, - STATE(1315), 1, + STATE(732), 1, sym_FnCallArguments, - STATE(1343), 1, + STATE(751), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1314), 2, + STATE(733), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1210), 10, + ACTIONS(1198), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -115029,13 +115808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1208), 26, - anon_sym_COMMA, + ACTIONS(1196), 26, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -115056,18 +115835,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [32549] = 6, + [33292] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2068), 1, - anon_sym_align, - STATE(1281), 1, - aux_sym_PrefixTypeOp_repeat2, - ACTIONS(2066), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2017), 15, + ACTIONS(2084), 16, + anon_sym_BANG, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115081,9 +115853,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2013), 26, + ACTIONS(2082), 29, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115099,10 +115871,13 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, + anon_sym_linksection, + anon_sym_callconv, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_align, anon_sym_struct, anon_sym_opaque, anon_sym_enum, @@ -115110,72 +115885,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32609] = 11, + [33345] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2058), 1, + ACTIONS(2088), 16, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(2060), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, anon_sym_LBRACK, - STATE(1333), 1, - sym_FnCallArguments, - STATE(1351), 1, - sym_SuffixOp, - ACTIONS(2064), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1318), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1216), 10, - anon_sym_BANG, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1214), 26, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [32679] = 3, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2086), 29, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_linksection, + anon_sym_callconv, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_align, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [33398] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2072), 18, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(2090), 1, + anon_sym_COLON, + ACTIONS(2092), 1, + anon_sym_PIPE, + STATE(1324), 1, + sym_PtrPayload, + STATE(1373), 1, + sym_WhileContinueExpr, + ACTIONS(1767), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115189,9 +115960,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2070), 28, + ACTIONS(1765), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115207,8 +115978,6 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, - anon_sym_linksection, - anon_sym_callconv, anon_sym_if, anon_sym_while, anon_sym_for, @@ -115220,28 +115989,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32733] = 11, + [33459] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(2033), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1334), 1, + STATE(1340), 1, sym_FnCallArguments, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1331), 2, + STATE(1339), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1210), 10, + ACTIONS(1216), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -115252,7 +116019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1208), 26, + ACTIONS(1214), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -115279,28 +116046,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [32803] = 11, + [33526] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2058), 1, + ACTIONS(1202), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(1204), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(1206), 1, anon_sym_LBRACK, - STATE(1312), 1, + STATE(747), 1, sym_FnCallArguments, - STATE(1343), 1, + STATE(753), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1311), 2, + STATE(748), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1216), 10, + ACTIONS(1198), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -115311,13 +116076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1214), 26, - anon_sym_COMMA, + ACTIONS(1196), 26, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -115338,18 +116103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [32873] = 6, + [33593] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2068), 1, - anon_sym_align, - STATE(1274), 1, - aux_sym_PrefixTypeOp_repeat2, - ACTIONS(2074), 3, - anon_sym_const, - anon_sym_volatile, - anon_sym_allowzero, - ACTIONS(2009), 15, + ACTIONS(2096), 18, + anon_sym_SEMI, + anon_sym_BANG, + anon_sym_EQ, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115363,9 +116123,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2005), 26, + ACTIONS(2094), 27, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115381,6 +116141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, + anon_sym_callconv, anon_sym_if, anon_sym_while, anon_sym_for, @@ -115392,10 +116153,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32933] = 3, + [33646] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2078), 16, + ACTIONS(2100), 16, anon_sym_BANG, anon_sym_DOT, anon_sym_LPAREN, @@ -115410,9 +116171,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2076), 29, + ACTIONS(2098), 29, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115442,110 +116203,124 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [32986] = 3, + [33699] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2082), 16, - anon_sym_BANG, + ACTIONS(2031), 1, anon_sym_DOT, + ACTIONS(2033), 1, anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2080), 29, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_linksection, - anon_sym_callconv, - anon_sym_if, - anon_sym_while, - anon_sym_for, + STATE(1331), 1, + sym_FnCallArguments, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1335), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1212), 10, + anon_sym_BANG, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_align, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [33039] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1210), 26, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + [33766] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2086), 15, + ACTIONS(1202), 1, anon_sym_DOT, + ACTIONS(1204), 1, anon_sym_LPAREN, + ACTIONS(1206), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2084), 30, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_volatile, - anon_sym_if, - anon_sym_while, - anon_sym_for, + STATE(725), 1, + sym_FnCallArguments, + STATE(751), 1, + sym_SuffixOp, + ACTIONS(1208), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(727), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1220), 10, + anon_sym_BANG, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_allowzero, - anon_sym_align, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [33092] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1218), 26, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + [33833] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2072), 15, + ACTIONS(2104), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115559,9 +116334,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2070), 30, + ACTIONS(2102), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115592,67 +116367,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33145] = 10, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, - ACTIONS(1202), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_LBRACK, - STATE(734), 1, - sym_FnCallArguments, - STATE(753), 1, - sym_SuffixOp, - ACTIONS(1206), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(727), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1216), 10, - anon_sym_BANG, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1214), 26, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [33212] = 3, + [33886] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2090), 15, + ACTIONS(2029), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115666,9 +116384,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2088), 30, + ACTIONS(2027), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115699,10 +116417,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33265] = 3, + [33939] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2094), 15, + ACTIONS(2108), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115716,9 +116434,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2092), 30, + ACTIONS(2106), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -115749,11 +116467,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33318] = 3, + [33992] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2098), 16, - anon_sym_BANG, + ACTIONS(2112), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115767,13 +116484,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2096), 29, + ACTIONS(2110), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, + anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -115785,12 +116503,12 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, - anon_sym_linksection, - anon_sym_callconv, + anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_allowzero, anon_sym_align, anon_sym_struct, anon_sym_opaque, @@ -115799,26 +116517,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33371] = 10, + [34045] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, ACTIONS(1202), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, anon_sym_LBRACK, - STATE(731), 1, + STATE(744), 1, sym_FnCallArguments, STATE(753), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(723), 2, + STATE(745), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1210), 10, + ACTIONS(1220), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -115829,7 +116547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1208), 26, + ACTIONS(1218), 26, anon_sym_COLON, anon_sym_else, anon_sym_and, @@ -115856,11 +116574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [33438] = 3, + [34112] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2102), 16, - anon_sym_BANG, + ACTIONS(2116), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115874,13 +116591,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2100), 29, + ACTIONS(2114), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, + anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -115892,12 +116610,12 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, - anon_sym_linksection, - anon_sym_callconv, + anon_sym_volatile, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, + anon_sym_allowzero, anon_sym_align, anon_sym_struct, anon_sym_opaque, @@ -115906,26 +116624,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33491] = 10, + [34165] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(2033), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1325), 1, + STATE(1309), 1, sym_FnCallArguments, - STATE(1351), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1324), 2, + STATE(1312), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1198), 10, + ACTIONS(1212), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -115936,7 +116654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1196), 26, + ACTIONS(1210), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -115963,10 +116681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [33558] = 3, + [34232] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1999), 15, + ACTIONS(2120), 16, + anon_sym_BANG, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -115980,14 +116699,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1995), 30, + ACTIONS(2118), 29, anon_sym_comptime, anon_sym_extern, anon_sym_inline, anon_sym_fn, - anon_sym_const, anon_sym_async, anon_sym_error, anon_sym_false, @@ -115999,12 +116717,12 @@ static const uint16_t ts_small_parse_table[] = { sym_BuildinTypeExpr, anon_sym_packed, anon_sym_switch, - anon_sym_volatile, + anon_sym_linksection, + anon_sym_callconv, anon_sym_if, anon_sym_while, anon_sym_for, anon_sym_STAR, - anon_sym_allowzero, anon_sym_align, anon_sym_struct, anon_sym_opaque, @@ -116013,26 +116731,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33611] = 10, + [34285] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2060), 1, + ACTIONS(2033), 1, anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1336), 1, + STATE(1322), 1, sym_FnCallArguments, - STATE(1351), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1335), 2, + STATE(1318), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1220), 10, + ACTIONS(1216), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116043,7 +116761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1218), 26, + ACTIONS(1214), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -116070,10 +116788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [33678] = 3, + [34352] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2106), 15, + ACTIONS(2124), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -116087,9 +116805,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2104), 30, + ACTIONS(2122), 30, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -116120,130 +116838,73 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [33731] = 7, + [34405] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2108), 1, - anon_sym_COLON, - ACTIONS(2110), 1, - anon_sym_PIPE, - STATE(1319), 1, - sym_PtrPayload, - STATE(1388), 1, - sym_WhileContinueExpr, - ACTIONS(1776), 15, + ACTIONS(2126), 1, + anon_sym_BSLASH_BSLASH, + STATE(1308), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1224), 11, + anon_sym_BANG, + anon_sym_or, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1774), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [33792] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2114), 15, - anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1222), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2112), 30, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_volatile, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_allowzero, - anon_sym_align, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [33845] = 10, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [34461] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(1202), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(740), 1, - sym_FnCallArguments, - STATE(754), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(739), 2, + STATE(1317), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1216), 10, + ACTIONS(1231), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116254,13 +116915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1214), 26, - anon_sym_COLON, + ACTIONS(1229), 27, + anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -116281,26 +116943,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [33912] = 10, + [34523] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(1202), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(749), 1, - sym_FnCallArguments, - STATE(754), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(743), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1210), 10, + ACTIONS(1263), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116311,13 +116969,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1208), 26, - anon_sym_COLON, + ACTIONS(1261), 27, + anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -116338,126 +116997,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [33979] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2118), 18, - anon_sym_SEMI, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2116), 27, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_callconv, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [34032] = 3, + [34585] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2122), 15, + ACTIONS(2031), 1, anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2120), 30, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_volatile, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_allowzero, - anon_sym_align, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [34085] = 10, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2060), 1, - anon_sym_LPAREN, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1305), 1, - sym_FnCallArguments, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1313), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1198), 10, + ACTIONS(1239), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116468,11 +117023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1196), 26, + ACTIONS(1237), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -116495,26 +117051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34152] = 10, + [34647] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2060), 1, - anon_sym_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1317), 1, - sym_FnCallArguments, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1316), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1220), 10, + ACTIONS(1231), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116525,11 +117077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1218), 26, + ACTIONS(1229), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -116552,128 +117105,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34219] = 3, + [34709] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2126), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2124), 30, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_const, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_volatile, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_allowzero, - anon_sym_align, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [34272] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1343), 1, - sym_SuffixOp, - ACTIONS(2064), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1307), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1228), 10, + ACTIONS(263), 1, + anon_sym_BSLASH_BSLASH, + STATE(1308), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1247), 11, anon_sym_BANG, anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1226), 27, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [34334] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1343), 1, - sym_SuffixOp, - ACTIONS(2064), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1309), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1240), 10, - anon_sym_BANG, - anon_sym_or, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -116682,66 +117125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1238), 27, + ACTIONS(1245), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [34396] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2062), 1, anon_sym_LBRACK, - STATE(1343), 1, - sym_SuffixOp, - ACTIONS(2064), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1309), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1244), 10, - anon_sym_BANG, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1242), 27, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -116764,76 +117154,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34458] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1343), 1, - sym_SuffixOp, - ACTIONS(2064), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1248), 10, - anon_sym_BANG, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1246), 27, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [34520] = 8, + [34765] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2128), 1, + ACTIONS(2129), 1, anon_sym_DOT, - ACTIONS(2131), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2134), 2, + ACTIONS(2135), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1264), 10, + ACTIONS(1271), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116844,7 +117182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1262), 27, + ACTIONS(1269), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -116872,22 +117210,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34582] = 8, + [34827] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1316), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1232), 10, + ACTIONS(1235), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116898,7 +117236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1230), 27, + ACTIONS(1233), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -116926,22 +117264,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34644] = 8, + [34889] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1236), 10, + ACTIONS(1284), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -116952,7 +117290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1234), 27, + ACTIONS(1282), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -116980,22 +117318,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34706] = 8, + [34951] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1306), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1260), 10, + ACTIONS(1267), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117006,7 +117344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1258), 27, + ACTIONS(1265), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117034,22 +117372,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34768] = 8, + [35013] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1228), 10, + ACTIONS(1251), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117060,7 +117398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1226), 27, + ACTIONS(1249), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117088,22 +117426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34830] = 8, + [35075] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1224), 10, + ACTIONS(1243), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117114,7 +117452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1222), 27, + ACTIONS(1241), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117142,22 +117480,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34892] = 8, + [35137] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1308), 2, + STATE(1314), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1252), 10, + ACTIONS(1259), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117168,7 +117506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1250), 27, + ACTIONS(1257), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117196,22 +117534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [34954] = 8, + [35199] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1309), 2, + STATE(1311), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1256), 10, + ACTIONS(1255), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117222,7 +117560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1254), 27, + ACTIONS(1253), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117250,22 +117588,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35016] = 8, + [35261] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1343), 1, + STATE(1359), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, STATE(1310), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1256), 10, + ACTIONS(1251), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117276,7 +117614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1254), 27, + ACTIONS(1249), 27, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117304,22 +117642,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35078] = 8, + [35323] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2129), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2132), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2135), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1236), 10, + ACTIONS(1271), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117330,7 +117668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1234), 26, + ACTIONS(1269), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117357,14 +117695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35139] = 5, + [35384] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2108), 1, + ACTIONS(2090), 1, anon_sym_COLON, - STATE(1404), 1, + STATE(1388), 1, sym_WhileContinueExpr, - ACTIONS(1858), 15, + ACTIONS(1821), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -117378,9 +117716,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1856), 26, + ACTIONS(1819), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -117407,24 +117745,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [35194] = 8, + [35439] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2137), 1, - anon_sym_LBRACE, - STATE(1405), 1, - sym__ElseTypeExprTail, - STATE(1609), 1, - sym_InitList, - ACTIONS(1303), 2, - anon_sym_BANG, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(1301), 4, - anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1385), 9, + STATE(1323), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1259), 10, + anon_sym_BANG, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -117434,10 +117771,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1383), 25, + ACTIONS(1257), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117460,22 +117798,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35255] = 8, + [35500] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1328), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1232), 10, + ACTIONS(1255), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117486,7 +117824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1230), 26, + ACTIONS(1253), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117513,24 +117851,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35316] = 8, + [35561] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2137), 1, - anon_sym_LBRACE, - STATE(1407), 1, - sym__ElseTypeExprTail, - STATE(1609), 1, - sym_InitList, - ACTIONS(1290), 2, - anon_sym_BANG, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(1288), 4, - anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1385), 9, + STATE(1323), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1263), 10, + anon_sym_BANG, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -117540,10 +117877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1383), 25, + ACTIONS(1261), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117566,22 +117904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35377] = 8, + [35622] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1240), 10, + ACTIONS(1239), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117592,7 +117930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1238), 26, + ACTIONS(1237), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117619,22 +117957,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35438] = 8, + [35683] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1228), 10, + ACTIONS(1284), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -117645,7 +117983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1226), 26, + ACTIONS(1282), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -117672,23 +118010,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35499] = 8, + [35744] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2138), 1, + anon_sym_LBRACE, + STATE(1412), 1, + sym__ElseTypeExprTail, + STATE(1613), 1, + sym_InitList, + ACTIONS(1313), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(1311), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1351), 1, - sym_SuffixOp, - ACTIONS(2064), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1327), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1228), 10, - anon_sym_BANG, + ACTIONS(1543), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -117698,11 +118037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1226), 26, + ACTIONS(1541), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117725,24 +118063,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35560] = 8, + [35805] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2137), 1, - anon_sym_LBRACE, - STATE(1406), 1, - sym__ElseTypeExprTail, - STATE(1609), 1, - sym_InitList, - ACTIONS(1311), 2, - anon_sym_BANG, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(1309), 4, - anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - ACTIONS(1385), 9, + STATE(1333), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1231), 10, + anon_sym_BANG, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -117752,10 +118089,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1383), 25, + ACTIONS(1229), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117778,23 +118116,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35621] = 8, + [35866] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2138), 1, + anon_sym_LBRACE, + STATE(1413), 1, + sym__ElseTypeExprTail, + STATE(1613), 1, + sym_InitList, + ACTIONS(1309), 2, + anon_sym_BANG, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(1307), 4, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1351), 1, - sym_SuffixOp, - ACTIONS(2064), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1244), 10, - anon_sym_BANG, + ACTIONS(1543), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -117804,11 +118143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1242), 26, + ACTIONS(1541), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117831,67 +118169,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35682] = 5, + [35927] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2110), 1, - anon_sym_PIPE, - STATE(1368), 1, - sym_PtrPayload, - ACTIONS(1821), 15, + ACTIONS(2031), 1, anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(2035), 1, anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1819), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [35737] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2139), 1, - aux_sym_LINESTRING_token1, - STATE(1329), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1283), 11, + STATE(1362), 1, + sym_SuffixOp, + ACTIONS(2037), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1323), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1267), 10, anon_sym_BANG, anon_sym_or, - anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -117900,13 +118195,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1281), 30, + ACTIONS(1265), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117929,19 +118222,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [35792] = 5, + [35988] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2142), 1, - aux_sym_LINESTRING_token1, - STATE(1329), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1277), 11, + ACTIONS(2138), 1, + anon_sym_LBRACE, + STATE(1414), 1, + sym__ElseTypeExprTail, + STATE(1613), 1, + sym_InitList, + ACTIONS(1305), 2, anon_sym_BANG, - anon_sym_or, anon_sym_DOT, + ACTIONS(1303), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + ACTIONS(1543), 9, + anon_sym_or, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -117950,13 +118249,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1275), 30, + ACTIONS(1541), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -117979,24 +118275,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [35847] = 8, + [36049] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1224), 10, + ACTIONS(1231), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -118007,7 +118301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1222), 26, + ACTIONS(1229), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -118034,22 +118328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35908] = 8, + [36110] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2128), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2131), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2134), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1329), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1264), 10, + ACTIONS(1235), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -118060,7 +118354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1262), 26, + ACTIONS(1233), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -118087,22 +118381,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [35969] = 8, + [36171] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2092), 1, + anon_sym_PIPE, + STATE(1424), 1, + sym_PtrPayload, + ACTIONS(1825), 15, anon_sym_DOT, - ACTIONS(2062), 1, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1351), 1, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1823), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [36226] = 8, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2031), 1, + anon_sym_DOT, + ACTIONS(2035), 1, + anon_sym_LBRACK, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1260), 10, + ACTIONS(1243), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -118113,7 +118457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1258), 26, + ACTIONS(1241), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -118140,22 +118484,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [36030] = 8, + [36287] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1337), 2, + STATE(1323), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1252), 10, + ACTIONS(1251), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -118166,7 +118510,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1250), 26, + ACTIONS(1249), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -118193,22 +118537,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [36091] = 8, + [36348] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, + ACTIONS(2031), 1, anon_sym_DOT, - ACTIONS(2062), 1, + ACTIONS(2035), 1, anon_sym_LBRACK, - STATE(1351), 1, + STATE(1362), 1, sym_SuffixOp, - ACTIONS(2064), 2, + ACTIONS(2037), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, + STATE(1327), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1256), 10, + ACTIONS(1251), 10, anon_sym_BANG, anon_sym_or, anon_sym_PIPE, @@ -118219,7 +118563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1254), 26, + ACTIONS(1249), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -118246,24 +118590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [36152] = 8, + [36409] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1351), 1, - sym_SuffixOp, - ACTIONS(2064), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1321), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1256), 10, + ACTIONS(528), 11, anon_sym_BANG, anon_sym_or, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -118272,11 +118605,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1254), 26, + ACTIONS(526), 31, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -118299,24 +118635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [36213] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2058), 1, - anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_LBRACK, - STATE(1351), 1, - sym_SuffixOp, - ACTIONS(2064), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1332), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1248), 10, + [36459] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2033), 1, + anon_sym_LPAREN, + STATE(1431), 1, + sym_FnCallArguments, + ACTIONS(1297), 11, anon_sym_BANG, anon_sym_or, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -118325,11 +118656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1246), 26, + ACTIONS(1295), 29, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -118352,61 +118684,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [36274] = 3, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [36513] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2146), 16, + STATE(1414), 1, + sym__ElseTypeExprTail, + ACTIONS(1305), 11, anon_sym_BANG, + anon_sym_or, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1303), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2144), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [36324] = 5, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [36565] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2148), 1, - anon_sym_else, - STATE(820), 1, - sym__ElseTypeExprTail, - ACTIONS(1311), 11, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + ACTIONS(570), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118418,14 +118751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1309), 29, - anon_sym_COLON, + ACTIONS(568), 30, + anon_sym_COMMA, + anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -118448,61 +118782,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36378] = 3, + [36617] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1875), 16, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1873), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [36428] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2148), 1, + ACTIONS(2140), 1, anon_sym_else, - STATE(800), 1, + STATE(775), 1, sym__ElseTypeExprTail, - ACTIONS(1290), 11, + ACTIONS(1309), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118514,7 +118801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1288), 29, + ACTIONS(1307), 29, anon_sym_COLON, anon_sym_and, anon_sym_LBRACE, @@ -118544,10 +118831,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36482] = 3, + [36671] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(528), 11, + ACTIONS(2142), 1, + anon_sym_else, + STATE(1414), 1, + sym__ElseTypeExprTail, + ACTIONS(1305), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118559,10 +118850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(526), 31, + ACTIONS(1303), 29, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, @@ -118591,14 +118880,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36532] = 5, + [36725] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2150), 1, + ACTIONS(1864), 16, + anon_sym_COLON, + anon_sym_DOT, anon_sym_LPAREN, - STATE(1401), 1, - sym_FnCallArguments, - ACTIONS(1296), 11, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1862), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [36775] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2142), 1, + anon_sym_else, + STATE(1412), 1, + sym__ElseTypeExprTail, + ACTIONS(1313), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118610,11 +118946,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1294), 29, + ACTIONS(1311), 29, anon_sym_COMMA, - anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, @@ -118640,17 +118976,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36586] = 5, + [36829] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2153), 1, - anon_sym_else, - STATE(1407), 1, - sym__ElseTypeExprTail, - ACTIONS(1290), 11, + ACTIONS(2138), 1, + anon_sym_LBRACE, + STATE(1613), 1, + sym_InitList, + ACTIONS(1465), 2, anon_sym_BANG, - anon_sym_or, anon_sym_DOT, + ACTIONS(1463), 4, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + ACTIONS(1543), 9, + anon_sym_or, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -118659,12 +119001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1288), 29, + ACTIONS(1541), 25, anon_sym_COMMA, + anon_sym_else, anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -118687,16 +119027,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [36640] = 5, + [36887] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2153), 1, + ACTIONS(2142), 1, anon_sym_else, - STATE(1406), 1, + STATE(1413), 1, sym__ElseTypeExprTail, - ACTIONS(1311), 11, + ACTIONS(1309), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118708,7 +119046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1309), 29, + ACTIONS(1307), 29, anon_sym_COMMA, anon_sym_and, anon_sym_LBRACE, @@ -118738,14 +119076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36694] = 5, + [36941] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2148), 1, - anon_sym_else, - STATE(803), 1, + STATE(1412), 1, sym__ElseTypeExprTail, - ACTIONS(1303), 11, + ACTIONS(1313), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118757,14 +119093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1301), 29, - anon_sym_COLON, + ACTIONS(1311), 30, + anon_sym_COMMA, + anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -118787,14 +119124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36748] = 5, + [36993] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2153), 1, - anon_sym_else, - STATE(1405), 1, + STATE(1413), 1, sym__ElseTypeExprTail, - ACTIONS(1303), 11, + ACTIONS(1309), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118806,8 +119141,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1301), 29, + ACTIONS(1307), 30, anon_sym_COMMA, + anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, @@ -118836,10 +119172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36802] = 3, + [37045] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(568), 11, + ACTIONS(1301), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118851,9 +119187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(566), 31, + ACTIONS(1299), 31, anon_sym_COMMA, - anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, @@ -118883,12 +119218,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36852] = 4, + anon_sym_BSLASH_BSLASH, + [37095] = 3, ACTIONS(95), 1, sym_line_comment, - STATE(1405), 1, - sym__ElseTypeExprTail, - ACTIONS(1303), 11, + ACTIONS(564), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118900,8 +119234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1301), 30, + ACTIONS(562), 31, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, @@ -118931,12 +119266,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36904] = 4, + [37145] = 5, ACTIONS(95), 1, sym_line_comment, - STATE(1406), 1, + ACTIONS(2140), 1, + anon_sym_else, + STATE(804), 1, sym__ElseTypeExprTail, - ACTIONS(1311), 11, + ACTIONS(1313), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118948,15 +119285,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1309), 30, - anon_sym_COMMA, - anon_sym_else, + ACTIONS(1311), 29, + anon_sym_COLON, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -118979,14 +119315,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [36956] = 5, + [37199] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2060), 1, + ACTIONS(1868), 16, + anon_sym_COLON, + anon_sym_DOT, anon_sym_LPAREN, - STATE(1401), 1, - sym_FnCallArguments, - ACTIONS(1296), 11, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1866), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [37249] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(524), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -118998,11 +119377,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1294), 29, + ACTIONS(522), 31, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, @@ -119028,12 +119409,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37010] = 4, + [37299] = 3, ACTIONS(95), 1, sym_line_comment, - STATE(1407), 1, - sym__ElseTypeExprTail, - ACTIONS(1290), 11, + ACTIONS(2146), 16, + anon_sym_BANG, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2144), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [37349] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2148), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_FnCallArguments, + ACTIONS(1288), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119045,12 +119475,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1288), 30, + ACTIONS(1286), 29, anon_sym_COMMA, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, @@ -119076,10 +119505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37062] = 3, + [37403] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(540), 11, + ACTIONS(2140), 1, + anon_sym_else, + STATE(774), 1, + sym__ElseTypeExprTail, + ACTIONS(1305), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119091,16 +119524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(538), 31, - anon_sym_COMMA, + ACTIONS(1303), 29, anon_sym_COLON, - anon_sym_else, anon_sym_and, anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -119123,14 +119554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37112] = 5, + [37457] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2060), 1, - anon_sym_LPAREN, - STATE(1424), 1, - sym_FnCallArguments, - ACTIONS(1307), 11, + ACTIONS(560), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119142,11 +119569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1305), 29, + ACTIONS(558), 31, anon_sym_COMMA, + anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, @@ -119172,10 +119601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37166] = 3, + [37507] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(572), 11, + ACTIONS(2033), 1, + anon_sym_LPAREN, + STATE(1408), 1, + sym_FnCallArguments, + ACTIONS(1288), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119187,13 +119620,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(570), 31, + ACTIONS(1286), 29, anon_sym_COMMA, - anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, @@ -119219,70 +119650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37216] = 3, + [37561] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1871), 16, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1869), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [37266] = 7, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2137), 1, - anon_sym_LBRACE, - STATE(1609), 1, - sym_InitList, - ACTIONS(1431), 2, + ACTIONS(1461), 11, anon_sym_BANG, - anon_sym_DOT, - ACTIONS(1429), 4, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - ACTIONS(1385), 9, anon_sym_or, + anon_sym_DOT, anon_sym_PIPE, anon_sym_STAR, anon_sym_LT, @@ -119291,10 +119665,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1383), 25, + ACTIONS(1459), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, anon_sym_EQ_EQ, @@ -119317,12 +119694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [37324] = 4, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [37610] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - ACTIONS(534), 11, + ACTIONS(1381), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119334,7 +119711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(532), 30, + ACTIONS(1379), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119365,10 +119742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37376] = 3, + [37659] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1423), 11, + ACTIONS(1393), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119380,7 +119757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1421), 30, + ACTIONS(1391), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119411,10 +119788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37425] = 3, + [37708] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1325), 11, + ACTIONS(1465), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119426,7 +119803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1323), 30, + ACTIONS(1463), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119457,10 +119834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37474] = 3, + [37757] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(510), 11, + ACTIONS(1469), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119472,7 +119849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(512), 30, + ACTIONS(1467), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119503,7 +119880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37523] = 3, + [37806] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(506), 11, @@ -119549,10 +119926,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37572] = 3, + [37855] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1341), 11, + ACTIONS(1755), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1753), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [37904] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2025), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2021), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [37953] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(510), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119564,7 +120033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1339), 30, + ACTIONS(512), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119595,10 +120064,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37621] = 3, + [38002] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1373), 11, + ACTIONS(1321), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119610,7 +120079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1371), 30, + ACTIONS(1319), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119641,10 +120110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37670] = 3, + [38051] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1757), 15, + ACTIONS(1821), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -119658,9 +120127,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1755), 26, + ACTIONS(1819), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -119687,56 +120156,102 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [37719] = 3, + [38100] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1913), 15, + ACTIONS(518), 11, + anon_sym_BANG, + anon_sym_or, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(516), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1911), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [38149] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(534), 11, + anon_sym_BANG, + anon_sym_or, + anon_sym_DOT, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [37768] = 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(536), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [38198] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(518), 11, + ACTIONS(538), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119748,7 +120263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(516), 30, + ACTIONS(540), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119779,53 +120294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37817] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1941), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1939), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [37866] = 3, + [38247] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(546), 11, @@ -119871,10 +120340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37915] = 3, + [38296] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(550), 11, + ACTIONS(1397), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119886,7 +120355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(552), 30, + ACTIONS(1395), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -119917,56 +120386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [37964] = 3, + [38345] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1921), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1919), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [38013] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1495), 11, + ACTIONS(550), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -119978,7 +120401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1493), 30, + ACTIONS(552), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120009,10 +120432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38062] = 3, + [38394] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1407), 11, + ACTIONS(1557), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120024,7 +120447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1405), 30, + ACTIONS(1555), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120055,10 +120478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38111] = 3, + [38443] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1555), 11, + ACTIONS(1473), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120070,7 +120493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1553), 30, + ACTIONS(1471), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120101,56 +120524,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38160] = 3, + [38492] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(558), 11, - anon_sym_BANG, - anon_sym_or, + ACTIONS(1919), 15, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(560), 30, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [38209] = 3, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1917), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [38541] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1419), 11, + ACTIONS(1565), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120162,7 +120585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1417), 30, + ACTIONS(1563), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120193,10 +120616,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38258] = 3, + [38590] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1459), 11, + ACTIONS(1477), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120208,7 +120631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1457), 30, + ACTIONS(1475), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120239,10 +120662,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38307] = 3, + [38639] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1491), 11, + ACTIONS(2153), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(2151), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [38688] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1519), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120254,7 +120723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1489), 30, + ACTIONS(1517), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120285,10 +120754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38356] = 3, + [38737] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(522), 11, + ACTIONS(1527), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120300,7 +120769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(524), 30, + ACTIONS(1525), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120331,10 +120800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38405] = 3, + [38786] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2157), 15, + ACTIONS(1939), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120348,9 +120817,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2155), 26, + ACTIONS(1937), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [38835] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1899), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1897), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -120377,10 +120892,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [38454] = 3, + [38884] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1887), 15, + ACTIONS(1907), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120394,9 +120909,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1885), 26, + ACTIONS(1905), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -120423,10 +120938,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [38503] = 3, + [38933] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1431), 11, + ACTIONS(1531), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120438,7 +120953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1429), 30, + ACTIONS(1529), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120469,10 +120984,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38552] = 3, + [38982] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1487), 11, + ACTIONS(1569), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120484,7 +120999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1485), 30, + ACTIONS(1567), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120515,56 +121030,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38601] = 3, + [39031] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1451), 11, - anon_sym_BANG, - anon_sym_or, + ACTIONS(1935), 15, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1449), 30, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [38650] = 3, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1933), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [39080] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1447), 11, + ACTIONS(1481), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120576,7 +121091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1445), 30, + ACTIONS(1479), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120607,10 +121122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38699] = 3, + [39129] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1905), 15, + ACTIONS(1931), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -120624,9 +121139,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1903), 26, + ACTIONS(1929), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -120653,10 +121168,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [38748] = 3, + [39178] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1315), 11, + ACTIONS(1437), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120668,7 +121183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1313), 30, + ACTIONS(1435), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120699,148 +121214,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38797] = 3, + [39227] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1858), 15, + ACTIONS(1401), 11, + anon_sym_BANG, + anon_sym_or, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1856), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [38846] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1909), 15, - anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1399), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1907), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [38895] = 3, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [39276] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2161), 15, + ACTIONS(1389), 11, + anon_sym_BANG, + anon_sym_or, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_STAR, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1387), 30, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2159), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [38944] = 3, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + [39325] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1463), 11, + ACTIONS(1493), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120852,7 +121321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1461), 30, + ACTIONS(1491), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120883,10 +121352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [38993] = 3, + [39374] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1515), 11, + ACTIONS(1433), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120898,7 +121367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1513), 30, + ACTIONS(1431), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120929,10 +121398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39042] = 3, + [39423] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1527), 11, + ACTIONS(1429), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120944,7 +121413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1525), 30, + ACTIONS(1427), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -120975,10 +121444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39091] = 3, + [39472] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1547), 11, + ACTIONS(1425), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -120990,7 +121459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1545), 30, + ACTIONS(1423), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121021,10 +121490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39140] = 3, + [39521] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1551), 11, + ACTIONS(1409), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121036,7 +121505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1549), 30, + ACTIONS(1407), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121067,10 +121536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39189] = 3, + [39570] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1571), 11, + ACTIONS(1365), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121082,7 +121551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1569), 30, + ACTIONS(1363), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121113,56 +121582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39238] = 3, + [39619] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2017), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(2013), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [39287] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1471), 11, + ACTIONS(1489), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121174,7 +121597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1469), 30, + ACTIONS(1487), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121205,10 +121628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39336] = 3, + [39668] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1523), 11, + ACTIONS(1345), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121220,7 +121643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1521), 30, + ACTIONS(1343), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121251,10 +121674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39385] = 3, + [39717] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1321), 11, + ACTIONS(1535), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121266,7 +121689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1319), 30, + ACTIONS(1533), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121297,10 +121720,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39434] = 3, + [39766] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1264), 11, + ACTIONS(1271), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121312,7 +121735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1262), 30, + ACTIONS(1269), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121343,10 +121766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39483] = 3, + [39815] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1531), 11, + ACTIONS(1337), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121358,7 +121781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1529), 30, + ACTIONS(1335), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121389,10 +121812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39532] = 3, + [39864] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2009), 15, + ACTIONS(2157), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -121406,9 +121829,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(2005), 26, + ACTIONS(2155), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -121435,10 +121858,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [39581] = 3, + [39913] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1917), 15, + ACTIONS(2017), 15, anon_sym_DOT, anon_sym_LPAREN, anon_sym_LBRACK, @@ -121452,9 +121875,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1915), 26, + ACTIONS(2013), 26, anon_sym_comptime, anon_sym_extern, anon_sym_inline, @@ -121481,10 +121904,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_INTEGER_token3, aux_sym_INTEGER_token4, aux_sym_IDENTIFIER_token1, - [39630] = 3, + [39962] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1455), 11, + ACTIONS(1485), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121496,7 +121919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1453), 30, + ACTIONS(1483), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121527,10 +121950,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39679] = 3, + [40011] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1503), 11, + ACTIONS(1377), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121542,7 +121965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1501), 30, + ACTIONS(1375), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121573,10 +121996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39728] = 3, + [40060] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1443), 11, + ACTIONS(1373), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121588,7 +122011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1441), 30, + ACTIONS(1371), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121619,10 +122042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39777] = 3, + [40109] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1567), 11, + ACTIONS(1357), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121634,7 +122057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1565), 30, + ACTIONS(1355), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121665,10 +122088,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39826] = 3, + [40158] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1475), 11, + ACTIONS(1887), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1885), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [40207] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1329), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121680,7 +122149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1473), 30, + ACTIONS(1327), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121711,10 +122180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39875] = 3, + [40256] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1345), 11, + ACTIONS(1333), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121726,7 +122195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1343), 30, + ACTIONS(1331), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121757,10 +122226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39924] = 3, + [40305] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1415), 11, + ACTIONS(1405), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121772,7 +122241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1413), 30, + ACTIONS(1403), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121803,10 +122272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [39973] = 3, + [40354] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1357), 11, + ACTIONS(1561), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121818,7 +122287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1355), 30, + ACTIONS(1559), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121849,10 +122318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40022] = 3, + [40403] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1395), 11, + ACTIONS(1523), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121864,7 +122333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1393), 30, + ACTIONS(1521), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121895,10 +122364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40071] = 3, + [40452] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1391), 11, + ACTIONS(1509), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121910,7 +122379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1389), 30, + ACTIONS(1507), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121941,10 +122410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40120] = 3, + [40501] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1377), 11, + ACTIONS(1421), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -121956,7 +122425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1375), 30, + ACTIONS(1419), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -121987,10 +122456,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40169] = 3, + [40550] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1403), 11, + ACTIONS(1891), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR_STAR, + anon_sym_QMARK, + anon_sym_SQUOTE, + aux_sym_FLOAT_token1, + aux_sym_FLOAT_token2, + aux_sym_FLOAT_token3, + aux_sym_FLOAT_token4, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + anon_sym_DQUOTE, + anon_sym_BSLASH_BSLASH, + anon_sym_AT, + ACTIONS(1889), 26, + anon_sym_comptime, + anon_sym_extern, + anon_sym_inline, + anon_sym_fn, + anon_sym_async, + anon_sym_error, + anon_sym_false, + anon_sym_null, + anon_sym_anyframe, + anon_sym_true, + anon_sym_undefined, + anon_sym_unreachable, + sym_BuildinTypeExpr, + anon_sym_packed, + anon_sym_switch, + anon_sym_if, + anon_sym_while, + anon_sym_for, + anon_sym_STAR, + anon_sym_struct, + anon_sym_opaque, + anon_sym_enum, + anon_sym_union, + aux_sym_INTEGER_token3, + aux_sym_INTEGER_token4, + aux_sym_IDENTIFIER_token1, + [40599] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1501), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122002,7 +122517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1401), 30, + ACTIONS(1499), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122033,10 +122548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40218] = 3, + [40648] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1333), 11, + ACTIONS(1457), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122048,7 +122563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1331), 30, + ACTIONS(1455), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122079,10 +122594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40267] = 3, + [40697] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1369), 11, + ACTIONS(1445), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122094,7 +122609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1367), 30, + ACTIONS(1443), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122125,10 +122640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40316] = 3, + [40746] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1361), 11, + ACTIONS(1317), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122140,7 +122655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1359), 30, + ACTIONS(1315), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122171,10 +122686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40365] = 3, + [40795] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1349), 11, + ACTIONS(1497), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122186,7 +122701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1347), 30, + ACTIONS(1495), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122217,10 +122732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40414] = 3, + [40844] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1337), 11, + ACTIONS(1573), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122232,7 +122747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1335), 30, + ACTIONS(1571), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122263,10 +122778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40463] = 3, + [40893] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1467), 11, + ACTIONS(1553), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122278,7 +122793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1465), 30, + ACTIONS(1551), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122309,10 +122824,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40512] = 3, + [40942] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1535), 11, + ACTIONS(1549), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122324,7 +122839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1533), 30, + ACTIONS(1547), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122355,7 +122870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40561] = 3, + [40991] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(1539), 11, @@ -122401,10 +122916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40610] = 3, + [41040] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1519), 11, + ACTIONS(1413), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122416,7 +122931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1517), 30, + ACTIONS(1411), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122447,10 +122962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40659] = 3, + [41089] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1511), 11, + ACTIONS(1385), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122462,7 +122977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1509), 30, + ACTIONS(1383), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122493,10 +123008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40708] = 3, + [41138] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1483), 11, + ACTIONS(1515), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122508,7 +123023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1481), 30, + ACTIONS(1513), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122539,56 +123054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40757] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1901), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR_STAR, - anon_sym_QMARK, - anon_sym_SQUOTE, - aux_sym_FLOAT_token1, - aux_sym_FLOAT_token2, - aux_sym_FLOAT_token3, - aux_sym_FLOAT_token4, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - anon_sym_DQUOTE, - aux_sym_LINESTRING_token1, - anon_sym_AT, - ACTIONS(1899), 26, - anon_sym_comptime, - anon_sym_extern, - anon_sym_inline, - anon_sym_fn, - anon_sym_async, - anon_sym_error, - anon_sym_false, - anon_sym_null, - anon_sym_anyframe, - anon_sym_true, - anon_sym_undefined, - anon_sym_unreachable, - sym_BuildinTypeExpr, - anon_sym_packed, - anon_sym_switch, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_STAR, - anon_sym_struct, - anon_sym_opaque, - anon_sym_enum, - anon_sym_union, - aux_sym_INTEGER_token3, - aux_sym_INTEGER_token4, - aux_sym_IDENTIFIER_token1, - [40806] = 3, + [41187] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1499), 11, + ACTIONS(1361), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122600,7 +123069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1497), 30, + ACTIONS(1359), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122631,10 +123100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40855] = 3, + [41236] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1329), 11, + ACTIONS(1505), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122646,7 +123115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1327), 30, + ACTIONS(1503), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122677,10 +123146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40904] = 3, + [41285] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1479), 11, + ACTIONS(1349), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122692,7 +123161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1477), 30, + ACTIONS(1347), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122723,10 +123192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [40953] = 3, + [41334] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1435), 11, + ACTIONS(1341), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122738,7 +123207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1433), 30, + ACTIONS(1339), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122769,10 +123238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41002] = 3, + [41383] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1439), 11, + ACTIONS(1453), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122784,7 +123253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1437), 30, + ACTIONS(1451), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122815,10 +123284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41051] = 3, + [41432] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1427), 11, + ACTIONS(1325), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122830,7 +123299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1425), 30, + ACTIONS(1323), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122861,10 +123330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41100] = 3, + [41481] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1507), 11, + ACTIONS(1449), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122876,7 +123345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1505), 30, + ACTIONS(1447), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122907,10 +123376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41149] = 3, + [41530] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1563), 11, + ACTIONS(1353), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122922,7 +123391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1561), 30, + ACTIONS(1351), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122953,10 +123422,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41198] = 3, + [41579] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1559), 11, + ACTIONS(1441), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -122968,7 +123437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1557), 30, + ACTIONS(1439), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -122999,10 +123468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41247] = 3, + [41628] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1411), 11, + ACTIONS(1369), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -123014,7 +123483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1409), 30, + ACTIONS(1367), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -123045,10 +123514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41296] = 3, + [41677] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1543), 11, + ACTIONS(1417), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -123060,7 +123529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1541), 30, + ACTIONS(1415), 30, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -123091,10 +123560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41345] = 3, + [41726] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1353), 11, + ACTIONS(2159), 1, + anon_sym_EQ, + ACTIONS(1469), 11, anon_sym_BANG, anon_sym_or, anon_sym_DOT, @@ -123106,15 +123577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1351), 30, + ACTIONS(1467), 28, anon_sym_COMMA, - anon_sym_else, anon_sym_and, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -123137,1208 +123606,1111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_PIPE, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [41394] = 3, + [41776] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1399), 11, - anon_sym_BANG, - anon_sym_or, - anon_sym_DOT, + ACTIONS(1603), 1, anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1397), 30, - anon_sym_COMMA, + ACTIONS(2161), 1, anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [41443] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1381), 11, - anon_sym_BANG, + ACTIONS(2163), 1, anon_sym_or, - anon_sym_DOT, - anon_sym_PIPE, + ACTIONS(2165), 1, + anon_sym_and, + STATE(226), 1, + sym_CompareOp, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, + sym_AdditionOp, + STATE(232), 1, + sym_MultiplyOp, + STATE(1611), 1, + sym__ElseExprTail, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1379), 30, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1593), 3, anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [41492] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1365), 11, - anon_sym_BANG, - anon_sym_or, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1363), 30, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [41541] = 22, + [41862] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2163), 1, - anon_sym_else, - ACTIONS(2165), 1, - anon_sym_or, ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - STATE(1608), 1, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + STATE(1008), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1587), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1635), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [41627] = 21, + [41946] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2161), 1, + anon_sym_else, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - STATE(994), 1, + STATE(232), 1, + sym_MultiplyOp, + STATE(1612), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1635), 3, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1617), 4, - anon_sym_COLON, - anon_sym_else, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [41711] = 21, + [42032] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - STATE(995), 1, + STATE(232), 1, + sym_MultiplyOp, + STATE(1612), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1625), 4, - anon_sym_COLON, + ACTIONS(1635), 4, + anon_sym_COMMA, anon_sym_else, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [41795] = 21, + [42116] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2165), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2167), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - STATE(1608), 1, + STATE(1611), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1587), 4, + ACTIONS(1593), 4, anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [41879] = 21, + [42200] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2165), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2167), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - STATE(1606), 1, + STATE(1610), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1617), 4, + ACTIONS(1623), 4, anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [41963] = 21, + [42284] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2169), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + ACTIONS(2171), 1, + anon_sym_else, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - STATE(993), 1, + STATE(337), 1, + sym_BitShiftOp, + STATE(1008), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1587), 4, + ACTIONS(1635), 3, anon_sym_COLON, - anon_sym_else, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42047] = 22, + [42370] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2169), 1, anon_sym_and, - ACTIONS(2173), 1, + ACTIONS(2171), 1, anon_sym_else, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - STATE(993), 1, + STATE(337), 1, + sym_BitShiftOp, + STATE(998), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1587), 3, + ACTIONS(1593), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42133] = 22, + [42456] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2161), 1, + anon_sym_else, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - ACTIONS(2173), 1, - anon_sym_else, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - STATE(994), 1, + STATE(232), 1, + sym_MultiplyOp, + STATE(1610), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1617), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1623), 3, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42219] = 22, + [42542] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2169), 1, anon_sym_and, - ACTIONS(2173), 1, + ACTIONS(2171), 1, anon_sym_else, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - STATE(995), 1, + STATE(337), 1, + sym_BitShiftOp, + STATE(1010), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1625), 3, + ACTIONS(1623), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42305] = 21, + [42628] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2165), 1, - anon_sym_or, ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - STATE(1605), 1, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + STATE(1010), 1, sym__ElseExprTail, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1625), 4, - anon_sym_COMMA, + ACTIONS(1623), 4, + anon_sym_COLON, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1611), 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42389] = 4, + [42712] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2175), 1, - anon_sym_EQ, - ACTIONS(1487), 11, - anon_sym_BANG, - anon_sym_or, - anon_sym_DOT, + ACTIONS(1603), 1, anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, + anon_sym_and, + STATE(179), 1, + sym_CompareOp, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, + sym_MultiplyOp, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + STATE(998), 1, + sym__ElseExprTail, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1485), 28, - anon_sym_COMMA, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1593), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - [42439] = 22, + [42796] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2163), 1, - anon_sym_else, - ACTIONS(2165), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2167), 1, + ACTIONS(2169), 1, anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - STATE(1605), 1, - sym__ElseExprTail, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1625), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1677), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42525] = 22, + [42877] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2163), 1, - anon_sym_else, - ACTIONS(2165), 1, - anon_sym_or, ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - STATE(1606), 1, - sym__ElseExprTail, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1617), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [42611] = 8, - ACTIONS(95), 1, - sym_line_comment, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, - sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, - sym_AdditionOp, - ACTIONS(1689), 9, - anon_sym_or, - anon_sym_PIPE, - anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1687), 25, + ACTIONS(1745), 4, anon_sym_COLON, anon_sym_else, - anon_sym_and, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42668] = 20, + [42958] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(232), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1687), 4, - anon_sym_COLON, + ACTIONS(1697), 4, + anon_sym_COMMA, anon_sym_else, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42749] = 20, + [43039] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2167), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2169), 1, anon_sym_and, - STATE(176), 1, + STATE(179), 1, sym_CompareOp, - STATE(177), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(129), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(2177), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42830] = 20, + [43120] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2165), 1, - anon_sym_or, ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1727), 4, - anon_sym_COMMA, + ACTIONS(1689), 4, + anon_sym_COLON, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1611), 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [42911] = 8, + [43201] = 12, ACTIONS(95), 1, sym_line_comment, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - ACTIONS(1697), 9, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1679), 5, anon_sym_or, anon_sym_PIPE, - anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1695), 25, + ACTIONS(1677), 15, anon_sym_COLON, anon_sym_else, anon_sym_and, @@ -124354,247 +124726,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [42968] = 8, + [43266] = 20, ACTIONS(95), 1, sym_line_comment, - STATE(228), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(2167), 1, + anon_sym_or, + ACTIONS(2169), 1, + anon_sym_and, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1697), 9, - anon_sym_or, - anon_sym_PIPE, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1695), 25, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1697), 4, + anon_sym_COLON, + anon_sym_else, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43025] = 10, + [43347] = 19, ACTIONS(95), 1, sym_line_comment, - STATE(228), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1679), 1, + anon_sym_or, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1689), 7, - anon_sym_or, - anon_sym_PIPE, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 20, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - [43086] = 12, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 5, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + [43426] = 20, ACTIONS(95), 1, sym_line_comment, - STATE(228), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(2163), 1, + anon_sym_or, + ACTIONS(2165), 1, + anon_sym_and, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 5, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(129), 4, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1689), 5, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - ACTIONS(1687), 15, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - [43151] = 14, + [43507] = 17, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1679), 3, anon_sym_or, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 13, - anon_sym_COMMA, + ACTIONS(1677), 9, + anon_sym_COLON, anon_sym_else, anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - [43220] = 10, + [43582] = 10, ACTIONS(95), 1, sym_line_comment, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1689), 7, + ACTIONS(1679), 7, anon_sym_or, anon_sym_PIPE, anon_sym_LT, @@ -124602,7 +124996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 20, + ACTIONS(1677), 20, anon_sym_COLON, anon_sym_else, anon_sym_and, @@ -124623,287 +125017,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - [43281] = 20, + [43643] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(232), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1727), 4, - anon_sym_COLON, + ACTIONS(1677), 4, + anon_sym_COMMA, anon_sym_else, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43362] = 8, + [43724] = 17, ACTIONS(95), 1, sym_line_comment, - STATE(228), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1689), 9, - anon_sym_or, - anon_sym_PIPE, + ACTIONS(1605), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1687), 25, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1679), 3, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43419] = 20, + ACTIONS(1677), 9, + anon_sym_COMMA, + anon_sym_else, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [43799] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(2169), 1, - anon_sym_or, - ACTIONS(2171), 1, - anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1707), 9, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(129), 4, + anon_sym_SLASH, + ACTIONS(1705), 25, anon_sym_COLON, anon_sym_else, + anon_sym_and, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1599), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43500] = 20, + [43856] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2167), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1687), 4, + ACTIONS(1689), 4, anon_sym_COMMA, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43581] = 17, + [43937] = 14, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1689), 3, + ACTIONS(1679), 4, anon_sym_or, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 9, + ACTIONS(1677), 13, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -124913,414 +125297,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [43656] = 19, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + [44006] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1689), 1, - anon_sym_or, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1679), 9, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, + anon_sym_SLASH, + ACTIONS(1677), 25, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, - anon_sym_COMMA, - anon_sym_else, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - [43735] = 20, + [44063] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(1751), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(156), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1679), 4, - anon_sym_COLON, - anon_sym_else, + ACTIONS(2173), 4, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43816] = 20, + [44144] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(2165), 1, - anon_sym_or, - ACTIONS(2167), 1, - anon_sym_and, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1707), 9, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1679), 4, + anon_sym_SLASH, + ACTIONS(1705), 25, anon_sym_COMMA, anon_sym_else, + anon_sym_and, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1611), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [43897] = 19, + [44201] = 14, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, - anon_sym_or, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(179), 1, sym_CompareOp, - STATE(249), 1, + STATE(256), 1, + sym_BitwiseOp, + STATE(320), 1, sym_MultiplyOp, - STATE(252), 1, + STATE(326), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1679), 4, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 5, + ACTIONS(1677), 13, anon_sym_COLON, anon_sym_else, anon_sym_and, anon_sym_RPAREN, anon_sym_RBRACK, - [43976] = 20, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + [44270] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(2165), 1, - anon_sym_or, - ACTIONS(2167), 1, - anon_sym_and, - STATE(228), 1, + STATE(226), 1, sym_CompareOp, - STATE(231), 1, + STATE(227), 1, sym_BitwiseOp, - STATE(232), 1, + STATE(230), 1, sym_BitShiftOp, - STATE(234), 1, + STATE(231), 1, sym_AdditionOp, - STATE(235), 1, + STATE(232), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1691), 4, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44057] = 17, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, - sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, - sym_AdditionOp, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1689), 3, + ACTIONS(1679), 5, anon_sym_or, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1687), 9, - anon_sym_COLON, + anon_sym_LT_LT, + ACTIONS(1677), 15, + anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [44132] = 14, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, - sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, - sym_AdditionOp, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + [44335] = 10, + ACTIONS(95), 1, + sym_line_comment, + STATE(226), 1, + sym_CompareOp, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, + sym_AdditionOp, + STATE(232), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 13, - anon_sym_COLON, + ACTIONS(1679), 7, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1677), 20, + anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -125329,171 +125612,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_orelse, anon_sym_catch, - [44201] = 20, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + [44396] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2169), 1, + ACTIONS(2163), 1, anon_sym_or, - ACTIONS(2171), 1, + ACTIONS(2165), 1, anon_sym_and, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - ACTIONS(1597), 2, + STATE(232), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1691), 4, - anon_sym_COLON, + ACTIONS(1745), 4, + anon_sym_COMMA, anon_sym_else, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44282] = 20, + [44477] = 19, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2165), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2167), 1, - anon_sym_and, - STATE(228), 1, + STATE(179), 1, sym_CompareOp, - STATE(231), 1, + STATE(256), 1, sym_BitwiseOp, - STATE(232), 1, - sym_BitShiftOp, - STATE(234), 1, - sym_AdditionOp, - STATE(235), 1, + STATE(320), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(326), 1, + sym_AdditionOp, + STATE(337), 1, + sym_BitShiftOp, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(129), 4, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44363] = 12, + ACTIONS(1677), 5, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACK, + [44556] = 8, ACTIONS(95), 1, sym_line_comment, - STATE(171), 1, - sym_BitShiftOp, - STATE(193), 1, - sym_BitwiseOp, - STATE(207), 1, + STATE(226), 1, sym_CompareOp, - STATE(249), 1, - sym_MultiplyOp, - STATE(252), 1, + STATE(227), 1, + sym_BitwiseOp, + STATE(230), 1, + sym_BitShiftOp, + STATE(231), 1, sym_AdditionOp, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1689), 5, + STATE(232), 1, + sym_MultiplyOp, + ACTIONS(1679), 9, anon_sym_or, anon_sym_PIPE, + anon_sym_STAR, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(1687), 15, - anon_sym_COLON, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + ACTIONS(1677), 25, + anon_sym_COMMA, anon_sym_else, anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -125504,320 +125779,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - [44428] = 14, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1607), 1, - anon_sym_LT_LT, - STATE(199), 1, - sym_CompareOp, - STATE(202), 1, - sym_BitwiseOp, - STATE(203), 1, - sym_BitShiftOp, - STATE(204), 1, - sym_AdditionOp, - STATE(206), 1, - sym_MultiplyOp, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, - anon_sym_or, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 12, - anon_sym_COMMA, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - [44496] = 22, + [44613] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2185), 1, - anon_sym_RPAREN, - STATE(158), 1, + ACTIONS(2175), 1, + anon_sym_COMMA, + ACTIONS(2177), 1, + anon_sym_RBRACE, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2354), 1, - sym_AsmOutput, - ACTIONS(1597), 2, + STATE(2124), 1, + aux_sym_InitList_repeat2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44580] = 22, + [44697] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2187), 1, + ACTIONS(2179), 1, anon_sym_COMMA, - ACTIONS(2189), 1, + ACTIONS(2181), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2088), 1, + STATE(2137), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44664] = 20, + [44781] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - STATE(176), 1, + ACTIONS(2183), 1, + anon_sym_COMMA, + ACTIONS(2185), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2100), 1, + aux_sym_InitList_repeat2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(2191), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44744] = 22, + [44865] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - ACTIONS(2193), 1, - anon_sym_COMMA, - ACTIONS(2195), 1, - anon_sym_RPAREN, - STATE(176), 1, + STATE(201), 1, sym_CompareOp, - STATE(177), 1, + STATE(202), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(207), 1, sym_AdditionOp, - STATE(180), 1, + STATE(209), 1, sym_MultiplyOp, - STATE(2126), 1, - aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1679), 9, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, + anon_sym_SLASH, + ACTIONS(1677), 24, + anon_sym_COMMA, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44828] = 8, + [44921] = 8, ACTIONS(95), 1, sym_line_comment, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1689), 9, + ACTIONS(1679), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -125827,7 +126046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1687), 24, + ACTIONS(1677), 24, anon_sym_COLON, anon_sym_and, anon_sym_RPAREN, @@ -125852,29 +126071,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [44884] = 10, + [44977] = 14, ACTIONS(95), 1, sym_line_comment, - STATE(158), 1, + ACTIONS(1615), 1, + anon_sym_LT_LT, + STATE(201), 1, sym_CompareOp, - STATE(298), 1, + STATE(202), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(207), 1, + sym_AdditionOp, + STATE(209), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1679), 4, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 12, + anon_sym_COMMA, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + [45045] = 10, + ACTIONS(95), 1, + sym_line_comment, + STATE(235), 1, + sym_CompareOp, + STATE(251), 1, + sym_BitwiseOp, + STATE(255), 1, + sym_BitShiftOp, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1689), 7, + ACTIONS(1679), 7, anon_sym_or, anon_sym_PIPE, anon_sym_LT, @@ -125882,7 +126155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 19, + ACTIONS(1677), 19, anon_sym_COLON, anon_sym_and, anon_sym_RPAREN, @@ -125902,44 +126175,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - [44944] = 12, + [45105] = 12, ACTIONS(95), 1, sym_line_comment, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1689), 5, + ACTIONS(1679), 5, anon_sym_or, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(1687), 14, + ACTIONS(1677), 14, anon_sym_COLON, anon_sym_and, anon_sym_RPAREN, @@ -125954,48 +126227,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - [45008] = 14, + [45169] = 14, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1689), 4, + ACTIONS(1679), 4, anon_sym_or, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 12, + ACTIONS(1677), 12, anon_sym_COLON, anon_sym_and, anon_sym_RPAREN, @@ -126008,211 +126281,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_orelse, anon_sym_catch, - [45076] = 22, + [45237] = 17, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - ACTIONS(2197), 1, - anon_sym_COMMA, - ACTIONS(2199), 1, - anon_sym_RBRACE, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2168), 1, - aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1679), 3, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45160] = 17, + ACTIONS(1677), 8, + anon_sym_COLON, + anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [45311] = 19, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(158), 1, + ACTIONS(1679), 1, + anon_sym_or, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1689), 3, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 5, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1677), 4, + anon_sym_COLON, + anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 8, - anon_sym_COLON, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [45234] = 22, + [45389] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2201), 1, + ACTIONS(2193), 1, anon_sym_RPAREN, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2312), 1, + STATE(2321), 1, sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45318] = 8, + [45473] = 17, ACTIONS(95), 1, sym_line_comment, - STATE(199), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1697), 9, - anon_sym_or, - anon_sym_PIPE, + ACTIONS(1605), 2, anon_sym_STAR, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SLASH, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1695), 24, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1679), 3, + anon_sym_or, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1619), 5, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + ACTIONS(1677), 8, anon_sym_COMMA, anon_sym_and, anon_sym_DOT_DOT_DOT, @@ -126221,119 +126516,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, + [45547] = 22, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + ACTIONS(2195), 1, + anon_sym_COMMA, + ACTIONS(2197), 1, + anon_sym_RBRACE, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + STATE(2165), 1, + aux_sym_InitList_repeat2, + ACTIONS(1605), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45374] = 19, + [45631] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(1749), 1, anon_sym_or, - STATE(158), 1, + ACTIONS(1751), 1, + anon_sym_and, + ACTIONS(2199), 1, + anon_sym_COMMA, + ACTIONS(2201), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2172), 1, + aux_sym_InitList_repeat2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1687), 4, - anon_sym_COLON, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45452] = 12, + [45715] = 10, ACTIONS(95), 1, sym_line_comment, - STATE(199), 1, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1689), 5, + ACTIONS(1679), 7, anon_sym_or, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - ACTIONS(1687), 14, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1677), 19, anon_sym_COMMA, anon_sym_and, anon_sym_DOT_DOT_DOT, @@ -126348,1092 +126685,1099 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_catch, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - [45516] = 20, + anon_sym_PLUS_PLUS, + anon_sym_PLUS_PERCENT, + anon_sym_DASH_PERCENT, + anon_sym_PLUS_PIPE, + anon_sym_DASH_PIPE, + [45775] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2203), 1, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2205), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(199), 1, + ACTIONS(2203), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(202), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(257), 1, sym_AdditionOp, - STATE(206), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2319), 1, + sym_AsmOutput, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1727), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45596] = 10, + [45859] = 22, ACTIONS(95), 1, sym_line_comment, - STATE(199), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, + anon_sym_or, + ACTIONS(2191), 1, + anon_sym_and, + ACTIONS(2205), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(202), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(257), 1, sym_AdditionOp, - STATE(206), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2336), 1, + sym_AsmOutput, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - ACTIONS(1689), 7, - anon_sym_or, - anon_sym_PIPE, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1687), 19, - anon_sym_COMMA, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - [45656] = 8, + ACTIONS(1621), 5, + anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_STAR_PERCENT, + anon_sym_STAR_PIPE, + [45943] = 20, ACTIONS(95), 1, sym_line_comment, - STATE(199), 1, + ACTIONS(1603), 1, + anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(2207), 1, + anon_sym_or, + ACTIONS(2209), 1, + anon_sym_and, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1689), 9, - anon_sym_or, - anon_sym_PIPE, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1687), 24, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1697), 3, anon_sym_COMMA, - anon_sym_and, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45712] = 22, + [46023] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2207), 1, + ACTIONS(2211), 1, anon_sym_COMMA, - ACTIONS(2209), 1, + ACTIONS(2213), 1, anon_sym_RBRACE, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2153), 1, + STATE(2150), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45796] = 20, + [46107] = 19, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2205), 1, - anon_sym_and, - STATE(199), 1, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1687), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1677), 4, + anon_sym_COMMA, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45876] = 20, + [46185] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(158), 1, + ACTIONS(2215), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2398), 1, + sym_AsmOutput, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1679), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [45956] = 20, + [46269] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2203), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2205), 1, + ACTIONS(2209), 1, anon_sym_and, - STATE(199), 1, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1679), 3, + ACTIONS(1677), 3, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46036] = 22, + [46349] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2211), 1, + ACTIONS(2217), 1, anon_sym_COMMA, - ACTIONS(2213), 1, + ACTIONS(2219), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2145), 1, + STATE(2221), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46120] = 20, + [46433] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2203), 1, + ACTIONS(2207), 1, anon_sym_or, - ACTIONS(2205), 1, + ACTIONS(2209), 1, anon_sym_and, - STATE(199), 1, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1691), 3, + ACTIONS(1689), 3, anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_EQ_GT, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46200] = 22, + [46513] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - ACTIONS(2215), 1, - anon_sym_COMMA, - ACTIONS(2217), 1, - anon_sym_RBRACE, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2130), 1, - aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1707), 9, + anon_sym_or, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, + anon_sym_SLASH, + ACTIONS(1705), 24, + anon_sym_COLON, + anon_sym_and, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46284] = 19, + [46569] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(2207), 1, anon_sym_or, - STATE(199), 1, + ACTIONS(2209), 1, + anon_sym_and, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1745), 3, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1687), 4, - anon_sym_COMMA, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46362] = 22, + [46649] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2219), 1, - anon_sym_COMMA, - ACTIONS(2221), 1, - anon_sym_RPAREN, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2160), 1, - aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1697), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46446] = 22, + [46729] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2181), 1, - anon_sym_or, - ACTIONS(2183), 1, - anon_sym_and, - ACTIONS(2223), 1, - anon_sym_RPAREN, - STATE(158), 1, + STATE(201), 1, sym_CompareOp, - STATE(298), 1, + STATE(202), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(207), 1, sym_AdditionOp, - STATE(307), 1, + STATE(209), 1, sym_MultiplyOp, - STATE(2362), 1, - sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46530] = 22, + ACTIONS(1679), 5, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + ACTIONS(1677), 14, + anon_sym_COMMA, + anon_sym_and, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + [46793] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2225), 1, - anon_sym_RPAREN, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2395), 1, - sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1745), 3, + anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46614] = 22, + [46873] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2207), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2209), 1, anon_sym_and, - ACTIONS(2227), 1, - anon_sym_RPAREN, - STATE(158), 1, + STATE(201), 1, sym_CompareOp, - STATE(298), 1, + STATE(202), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(207), 1, sym_AdditionOp, - STATE(307), 1, + STATE(209), 1, sym_MultiplyOp, - STATE(2316), 1, - sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(129), 3, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46698] = 22, + [46953] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2229), 1, + ACTIONS(2221), 1, anon_sym_COMMA, - ACTIONS(2231), 1, + ACTIONS(2223), 1, anon_sym_RBRACE, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2148), 1, + STATE(2182), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46782] = 17, + [47037] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(199), 1, + ACTIONS(2207), 1, + anon_sym_or, + ACTIONS(2209), 1, + anon_sym_and, + ACTIONS(2227), 1, + anon_sym_DOT_DOT_DOT, + STATE(201), 1, sym_CompareOp, STATE(202), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(207), 1, sym_AdditionOp, - STATE(206), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, ACTIONS(1609), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(2225), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1689), 3, - anon_sym_or, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1611), 5, + ACTIONS(1607), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - ACTIONS(1687), 8, - anon_sym_COMMA, - anon_sym_and, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [46856] = 22, + [47119] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, - anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2233), 1, + ACTIONS(2229), 1, + anon_sym_COMMA, + ACTIONS(2231), 1, anon_sym_RPAREN, - STATE(158), 1, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2348), 1, - sym_AsmOutput, - ACTIONS(1597), 2, + STATE(2094), 1, + aux_sym_InitList_repeat2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46940] = 8, + [47203] = 8, ACTIONS(95), 1, sym_line_comment, - STATE(158), 1, + STATE(201), 1, sym_CompareOp, - STATE(298), 1, + STATE(202), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(205), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(207), 1, sym_AdditionOp, - STATE(307), 1, + STATE(209), 1, sym_MultiplyOp, - ACTIONS(1697), 9, + ACTIONS(1707), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -127443,11 +127787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1695), 24, - anon_sym_COLON, + ACTIONS(1705), 24, + anon_sym_COMMA, anon_sym_and, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_EQ_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -127468,2442 +127812,2383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [46996] = 22, + [47259] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1759), 1, - anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - ACTIONS(2235), 1, - anon_sym_COMMA, - ACTIONS(2237), 1, - anon_sym_RPAREN, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - STATE(2119), 1, - aux_sym_InitList_repeat2, - ACTIONS(1597), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1609), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(1611), 5, - anon_sym_PLUS_PLUS, - anon_sym_PLUS_PERCENT, - anon_sym_DASH_PERCENT, - anon_sym_PLUS_PIPE, - anon_sym_DASH_PIPE, - ACTIONS(1613), 5, - anon_sym_PIPE_PIPE, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_STAR_PERCENT, - anon_sym_STAR_PIPE, - [47080] = 22, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2239), 1, + ACTIONS(2233), 1, anon_sym_COMMA, - ACTIONS(2241), 1, + ACTIONS(2235), 1, anon_sym_RBRACE, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2136), 1, + STATE(2089), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47164] = 20, + [47343] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1689), 1, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(158), 1, + ACTIONS(2237), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2373), 1, + sym_AsmOutput, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1687), 3, - anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47244] = 20, + [47427] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, ACTIONS(129), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47324] = 20, + [47507] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2203), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2205), 1, + ACTIONS(1751), 1, anon_sym_and, - STATE(199), 1, + STATE(156), 1, sym_CompareOp, - STATE(202), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(182), 1, sym_AdditionOp, - STATE(206), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(129), 3, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_EQ_GT, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(2239), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47404] = 22, + [47587] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2243), 1, + ACTIONS(2241), 1, anon_sym_COMMA, - ACTIONS(2245), 1, - anon_sym_RPAREN, - STATE(176), 1, + ACTIONS(2243), 1, + anon_sym_RBRACE, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2099), 1, + STATE(2215), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47488] = 21, + [47671] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2203), 1, + ACTIONS(2187), 1, + anon_sym_COLON, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2205), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2249), 1, - anon_sym_DOT_DOT_DOT, - STATE(199), 1, + ACTIONS(2245), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(202), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(203), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(204), 1, + STATE(257), 1, sym_AdditionOp, - STATE(206), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + STATE(2405), 1, + sym_AsmOutput, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(2247), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47570] = 22, + [47755] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2251), 1, + ACTIONS(2247), 1, anon_sym_COMMA, - ACTIONS(2253), 1, - anon_sym_RBRACE, - STATE(176), 1, + ACTIONS(2249), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - STATE(2093), 1, + STATE(2223), 1, aux_sym_InitList_repeat2, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47654] = 20, + [47839] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1691), 3, + ACTIONS(1689), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47734] = 22, + [47919] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2255), 1, + ACTIONS(2251), 1, anon_sym_RPAREN, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2391), 1, + STATE(2368), 1, sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47818] = 22, + [48003] = 22, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2179), 1, + ACTIONS(2187), 1, anon_sym_COLON, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2257), 1, + ACTIONS(2253), 1, anon_sym_RPAREN, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - STATE(2368), 1, + STATE(2343), 1, sym_AsmOutput, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47902] = 20, + [48087] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1679), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1727), 3, + ACTIONS(1677), 3, anon_sym_COLON, anon_sym_RPAREN, anon_sym_RBRACK, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [47982] = 20, + [48167] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, - STATE(176), 1, + ACTIONS(2255), 1, + anon_sym_COLON, + ACTIONS(2257), 1, + anon_sym_RBRACK, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(2259), 2, - anon_sym_COMMA, - anon_sym_EQ_GT, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48061] = 21, + [48248] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, + ACTIONS(2259), 1, + anon_sym_COLON, ACTIONS(2261), 1, anon_sym_RBRACK, - ACTIONS(2263), 1, - anon_sym_DOT_DOT, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48142] = 21, + [48329] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, + ACTIONS(2263), 1, + anon_sym_RBRACK, ACTIONS(2265), 1, - anon_sym_COLON, - ACTIONS(2267), 1, - anon_sym_RPAREN, - STATE(158), 1, + anon_sym_DOT_DOT, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48223] = 21, + [48410] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2269), 1, - anon_sym_COLON, - ACTIONS(2271), 1, - anon_sym_RBRACK, - STATE(158), 1, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(2267), 2, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48304] = 21, + [48489] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2273), 1, + ACTIONS(2269), 1, anon_sym_COLON, - ACTIONS(2275), 1, + ACTIONS(2271), 1, anon_sym_RBRACK, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48385] = 21, + [48570] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2277), 1, + ACTIONS(2273), 1, anon_sym_RBRACK, - ACTIONS(2279), 1, + ACTIONS(2275), 1, anon_sym_DOT_DOT, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48466] = 21, + [48651] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2281), 1, + ACTIONS(2277), 1, anon_sym_COLON, - ACTIONS(2283), 1, - anon_sym_RBRACK, - STATE(158), 1, + ACTIONS(2279), 1, + anon_sym_RPAREN, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48547] = 21, + [48732] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(2191), 1, anon_sym_and, - ACTIONS(2285), 1, + ACTIONS(2281), 1, anon_sym_COLON, - ACTIONS(2287), 1, + ACTIONS(2283), 1, anon_sym_RBRACK, - STATE(158), 1, + STATE(235), 1, sym_CompareOp, - STATE(298), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(257), 1, sym_AdditionOp, - STATE(307), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48628] = 20, + [48813] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - STATE(176), 1, + ACTIONS(2285), 1, + anon_sym_RBRACK, + ACTIONS(2287), 1, + anon_sym_DOT_DOT, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(2289), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48707] = 21, + [48894] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, + ACTIONS(2289), 1, + anon_sym_COLON, ACTIONS(2291), 1, anon_sym_RBRACK, - ACTIONS(2293), 1, - anon_sym_DOT_DOT, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48788] = 21, + [48975] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2295), 1, - anon_sym_COLON, - ACTIONS(2297), 1, + ACTIONS(2293), 1, anon_sym_RBRACK, - STATE(158), 1, + ACTIONS(2295), 1, + anon_sym_DOT_DOT, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48869] = 20, + [49056] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1591), 1, + ACTIONS(1599), 1, anon_sym_or, - ACTIONS(1593), 1, + ACTIONS(1601), 1, anon_sym_and, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - STATE(250), 1, + STATE(216), 1, + sym_MultiplyOp, + STATE(241), 1, sym_CompareOp, - STATE(274), 1, + STATE(250), 1, sym_BitwiseOp, STATE(275), 1, sym_BitShiftOp, - STATE(280), 1, + STATE(341), 1, sym_AdditionOp, - STATE(301), 1, - sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(2177), 2, + ACTIONS(2173), 2, anon_sym_SEMI, anon_sym_else, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [48948] = 21, + [49135] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, + ACTIONS(2297), 1, + anon_sym_COLON, ACTIONS(2299), 1, anon_sym_RBRACK, - ACTIONS(2301), 1, - anon_sym_DOT_DOT, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49029] = 21, + [49216] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2303), 1, - anon_sym_COLON, - ACTIONS(2305), 1, + ACTIONS(2301), 1, anon_sym_RBRACK, - STATE(158), 1, + ACTIONS(2303), 1, + anon_sym_DOT_DOT, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49110] = 21, + [49297] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2307), 1, + ACTIONS(2305), 1, anon_sym_RBRACK, - ACTIONS(2309), 1, + ACTIONS(2307), 1, anon_sym_DOT_DOT, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49191] = 21, + [49378] = 21, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2189), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(2191), 1, anon_sym_and, + ACTIONS(2309), 1, + anon_sym_COLON, ACTIONS(2311), 1, anon_sym_RBRACK, - ACTIONS(2313), 1, - anon_sym_DOT_DOT, - STATE(176), 1, + STATE(235), 1, sym_CompareOp, - STATE(177), 1, + STATE(251), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(255), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(257), 1, sym_AdditionOp, - STATE(180), 1, + STATE(276), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49272] = 21, + [49459] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(2181), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(2183), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2315), 1, - anon_sym_COLON, - ACTIONS(2317), 1, - anon_sym_RBRACK, - STATE(158), 1, + STATE(156), 1, sym_CompareOp, - STATE(298), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(300), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(303), 1, + STATE(182), 1, sym_AdditionOp, - STATE(307), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(2313), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49353] = 20, + [49538] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2319), 1, + ACTIONS(2315), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49431] = 20, + [49616] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2321), 1, - anon_sym_RPAREN, - STATE(176), 1, + ACTIONS(2317), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49509] = 20, + [49694] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2323), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2319), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49587] = 20, + [49772] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2325), 1, + ACTIONS(2321), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49665] = 20, + [49850] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2327), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2323), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49743] = 20, + [49928] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2329), 1, + ACTIONS(2325), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49821] = 20, + [50006] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2331), 1, + ACTIONS(2327), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49899] = 20, + [50084] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2333), 1, + ACTIONS(2329), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [49977] = 20, + [50162] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2335), 1, + ACTIONS(2331), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50055] = 20, + [50240] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, - anon_sym_PIPE, - ACTIONS(1605), 1, - anon_sym_catch, - ACTIONS(1607), 1, - anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(2333), 1, + anon_sym_BANG, + ACTIONS(1531), 9, anon_sym_or, - ACTIONS(1761), 1, - anon_sym_and, - ACTIONS(2337), 1, - anon_sym_RPAREN, - STATE(176), 1, - sym_CompareOp, - STATE(177), 1, - sym_BitwiseOp, - STATE(178), 1, - sym_BitShiftOp, - STATE(179), 1, - sym_AdditionOp, - STATE(180), 1, - sym_MultiplyOp, - ACTIONS(1597), 2, + anon_sym_PIPE, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(1601), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + anon_sym_LT_LT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - ACTIONS(1599), 4, + anon_sym_SLASH, + ACTIONS(1529), 26, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + anon_sym_catch, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50133] = 4, + [50286] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2339), 1, - anon_sym_BANG, - ACTIONS(1373), 9, - anon_sym_or, + ACTIONS(1603), 1, anon_sym_PIPE, + ACTIONS(1613), 1, + anon_sym_catch, + ACTIONS(1615), 1, + anon_sym_LT_LT, + ACTIONS(1749), 1, + anon_sym_or, + ACTIONS(1751), 1, + anon_sym_and, + ACTIONS(2335), 1, + anon_sym_RBRACK, + STATE(156), 1, + sym_CompareOp, + STATE(180), 1, + sym_BitwiseOp, + STATE(181), 1, + sym_BitShiftOp, + STATE(182), 1, + sym_AdditionOp, + STATE(183), 1, + sym_MultiplyOp, + ACTIONS(1605), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - ACTIONS(1371), 26, - anon_sym_COLON, - anon_sym_else, - anon_sym_and, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(1883), 2, + anon_sym_GT_GT, + anon_sym_LT_LT_PIPE, + ACTIONS(1611), 3, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_orelse, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_orelse, - anon_sym_catch, - anon_sym_GT_GT, - anon_sym_LT_LT_PIPE, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50179] = 20, + [50364] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2341), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2337), 1, + anon_sym_RBRACK, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50257] = 4, + [50442] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2343), 1, + ACTIONS(2339), 1, anon_sym_BANG, - ACTIONS(1373), 9, + ACTIONS(1531), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -129913,7 +130198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1371), 26, + ACTIONS(1529), 26, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -129940,420 +130225,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50303] = 20, + [50488] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2345), 1, + ACTIONS(2341), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50381] = 20, + [50566] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2347), 1, + ACTIONS(2343), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50459] = 20, + [50644] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2349), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2345), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50537] = 20, + [50722] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2351), 1, + ACTIONS(2347), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50615] = 20, + [50800] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2353), 1, + ACTIONS(2349), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50693] = 20, + [50878] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2355), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2351), 1, + anon_sym_RBRACK, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50771] = 20, + [50956] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2357), 1, + ACTIONS(2353), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50849] = 5, + [51034] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2138), 1, anon_sym_LBRACE, - STATE(1609), 1, + STATE(1613), 1, sym_InitList, - ACTIONS(1385), 9, + ACTIONS(1543), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -130363,7 +130648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1383), 25, + ACTIONS(1541), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -130389,1636 +130674,1636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50897] = 20, + [51082] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2359), 1, + ACTIONS(2355), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [50975] = 20, + [51160] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2361), 1, + ACTIONS(2357), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51053] = 20, + [51238] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2363), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2359), 1, + anon_sym_RBRACK, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51131] = 20, + [51316] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2365), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2361), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51209] = 20, + [51394] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2367), 1, + ACTIONS(2363), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51287] = 20, + [51472] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2369), 1, + ACTIONS(2365), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51365] = 20, + [51550] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2371), 1, + ACTIONS(2367), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51443] = 20, + [51628] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2373), 1, + ACTIONS(2369), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51521] = 20, + [51706] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2375), 1, - anon_sym_RPAREN, - STATE(176), 1, + ACTIONS(2371), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51599] = 20, + [51784] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2377), 1, + ACTIONS(2373), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51677] = 20, + [51862] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2379), 1, + ACTIONS(2375), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51755] = 20, + [51940] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2381), 1, + ACTIONS(2377), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51833] = 20, + [52018] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2383), 1, + ACTIONS(2379), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51911] = 20, + [52096] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2385), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2381), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [51989] = 20, + [52174] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2387), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2383), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52067] = 20, + [52252] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2389), 1, - anon_sym_SEMI, - STATE(176), 1, + ACTIONS(2385), 1, + anon_sym_RPAREN, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52145] = 20, + [52330] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2391), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2387), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52223] = 20, + [52408] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2393), 1, + ACTIONS(2389), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52301] = 20, + [52486] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2395), 1, + ACTIONS(2391), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52379] = 20, + [52564] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2397), 1, + ACTIONS(2393), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52457] = 20, + [52642] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2399), 1, + ACTIONS(2395), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52535] = 20, + [52720] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2401), 1, + ACTIONS(2397), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52613] = 20, + [52798] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2403), 1, + ACTIONS(2399), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52691] = 20, + [52876] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2405), 1, + ACTIONS(2401), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52769] = 20, + [52954] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2407), 1, + ACTIONS(2403), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52847] = 20, + [53032] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2409), 1, + ACTIONS(2405), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [52925] = 20, + [53110] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2411), 1, + ACTIONS(2407), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53003] = 20, + [53188] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2413), 1, - anon_sym_RBRACK, - STATE(176), 1, + ACTIONS(2409), 1, + anon_sym_SEMI, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53081] = 5, + [53266] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2415), 1, + ACTIONS(2411), 1, anon_sym_COLON, - STATE(1610), 1, + STATE(1614), 1, sym_BreakLabel, ACTIONS(49), 9, anon_sym_or, @@ -132056,418 +132341,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53129] = 20, + [53314] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2417), 1, - anon_sym_RPAREN, - STATE(176), 1, + ACTIONS(2413), 1, + anon_sym_RBRACK, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53207] = 20, + [53392] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2419), 1, + ACTIONS(2415), 1, anon_sym_RPAREN, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53285] = 20, + [53470] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2421), 1, + ACTIONS(2417), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53363] = 20, + [53548] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2423), 1, + ACTIONS(2419), 1, anon_sym_RBRACK, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53441] = 20, + [53626] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2425), 1, - anon_sym_RPAREN, - STATE(176), 1, + ACTIONS(2421), 1, + anon_sym_RBRACK, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53519] = 20, + [53704] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2427), 1, + ACTIONS(2423), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53597] = 20, + [53782] = 20, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1595), 1, + ACTIONS(1603), 1, anon_sym_PIPE, - ACTIONS(1605), 1, + ACTIONS(1613), 1, anon_sym_catch, - ACTIONS(1607), 1, + ACTIONS(1615), 1, anon_sym_LT_LT, - ACTIONS(1759), 1, + ACTIONS(1749), 1, anon_sym_or, - ACTIONS(1761), 1, + ACTIONS(1751), 1, anon_sym_and, - ACTIONS(2429), 1, + ACTIONS(2425), 1, anon_sym_SEMI, - STATE(176), 1, + STATE(156), 1, sym_CompareOp, - STATE(177), 1, + STATE(180), 1, sym_BitwiseOp, - STATE(178), 1, + STATE(181), 1, sym_BitShiftOp, - STATE(179), 1, + STATE(182), 1, sym_AdditionOp, - STATE(180), 1, + STATE(183), 1, sym_MultiplyOp, - ACTIONS(1597), 2, + ACTIONS(1605), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(1601), 2, + ACTIONS(1609), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1609), 2, + ACTIONS(1617), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1897), 2, + ACTIONS(1883), 2, anon_sym_GT_GT, anon_sym_LT_LT_PIPE, - ACTIONS(1603), 3, + ACTIONS(1611), 3, anon_sym_AMP, anon_sym_CARET, anon_sym_orelse, - ACTIONS(1599), 4, + ACTIONS(1607), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1611), 5, + ACTIONS(1619), 5, anon_sym_PLUS_PLUS, anon_sym_PLUS_PERCENT, anon_sym_DASH_PERCENT, anon_sym_PLUS_PIPE, anon_sym_DASH_PIPE, - ACTIONS(1613), 5, + ACTIONS(1621), 5, anon_sym_PIPE_PIPE, anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53675] = 4, + [53860] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2431), 1, + ACTIONS(2427), 1, anon_sym_BANG, - ACTIONS(1373), 9, + ACTIONS(1531), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132477,7 +132762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1371), 25, + ACTIONS(1529), 25, anon_sym_COLON, anon_sym_and, anon_sym_LBRACE, @@ -132503,12 +132788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53720] = 4, + [53905] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2433), 1, + ACTIONS(2429), 1, anon_sym_BANG, - ACTIONS(1373), 9, + ACTIONS(1531), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132518,7 +132803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1371), 25, + ACTIONS(1529), 25, anon_sym_COMMA, anon_sym_and, anon_sym_LBRACE, @@ -132544,10 +132829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53765] = 3, + [53950] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1841), 9, + ACTIONS(1815), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132557,7 +132842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1839), 25, + ACTIONS(1813), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132583,10 +132868,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53807] = 3, + [53992] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1837), 9, + ACTIONS(1857), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132596,7 +132881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1835), 25, + ACTIONS(1855), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132622,10 +132907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53849] = 3, + [54034] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1833), 9, + ACTIONS(1841), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132635,7 +132920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1831), 25, + ACTIONS(1839), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132661,10 +132946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53891] = 3, + [54076] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1825), 9, + ACTIONS(1829), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132674,7 +132959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1823), 25, + ACTIONS(1827), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132700,10 +132985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53933] = 3, + [54118] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1829), 9, + ACTIONS(1837), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132713,7 +132998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1827), 25, + ACTIONS(1835), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132739,10 +133024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [53975] = 3, + [54160] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1808), 9, + ACTIONS(1853), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132752,7 +133037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1806), 25, + ACTIONS(1851), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132778,7 +133063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54017] = 3, + [54202] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(131), 9, @@ -132817,10 +133102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54059] = 3, + [54244] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1848), 9, + ACTIONS(1845), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132830,7 +133115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1846), 25, + ACTIONS(1843), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132856,10 +133141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54101] = 3, + [54286] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1817), 9, + ACTIONS(1811), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132869,7 +133154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1815), 25, + ACTIONS(1809), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132895,10 +133180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54143] = 3, + [54328] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1852), 9, + ACTIONS(1833), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132908,7 +133193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(1850), 25, + ACTIONS(1831), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132934,10 +133219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54185] = 3, + [54370] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(544), 9, + ACTIONS(532), 9, anon_sym_or, anon_sym_PIPE, anon_sym_STAR, @@ -132947,7 +133232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - ACTIONS(542), 25, + ACTIONS(530), 25, anon_sym_COMMA, anon_sym_else, anon_sym_and, @@ -132973,28 +133258,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_STAR_PERCENT, anon_sym_STAR_PIPE, - [54227] = 11, + [54412] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2431), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + anon_sym_LBRACK, + STATE(1645), 1, + sym_FnCallArguments, + STATE(1670), 1, + sym_SuffixOp, + ACTIONS(2437), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1638), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1220), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54468] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2431), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + anon_sym_LBRACK, + STATE(1633), 1, + sym_FnCallArguments, + STATE(1670), 1, + sym_SuffixOp, + ACTIONS(2437), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1631), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1196), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1198), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54524] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1649), 1, + sym_FnCallArguments, + STATE(1760), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1650), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1220), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54579] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_LPAREN, + ACTIONS(2435), 1, + anon_sym_LBRACK, + STATE(1644), 1, + sym_FnCallArguments, + STATE(1670), 1, + sym_SuffixOp, + ACTIONS(2437), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1643), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1214), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1216), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54632] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1647), 1, + sym_FnCallArguments, + STATE(1760), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1660), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1196), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1198), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54687] = 11, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1200), 1, + anon_sym_COLON, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1673), 1, + sym_FnCallArguments, + STATE(1766), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1675), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1196), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1198), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54742] = 11, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, + ACTIONS(1200), 1, anon_sym_COLON, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1669), 1, + sym_FnCallArguments, + STATE(1766), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1668), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1220), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54797] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2431), 1, + anon_sym_DOT, + ACTIONS(2433), 1, + anon_sym_LPAREN, ACTIONS(2435), 1, + anon_sym_LBRACK, + STATE(1637), 1, + sym_FnCallArguments, + STATE(1670), 1, + sym_SuffixOp, + ACTIONS(2437), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1641), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1210), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1212), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54850] = 10, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2437), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1652), 1, + sym_FnCallArguments, + STATE(1760), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1654), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1214), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1216), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [54902] = 10, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1635), 1, + STATE(1676), 1, sym_FnCallArguments, - STATE(1656), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1637), 2, + STATE(1674), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 7, + ACTIONS(1210), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133002,7 +133679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1210), 15, + ACTIONS(1212), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133015,39 +133692,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54283] = 11, + [54954] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2435), 1, + ACTIONS(2447), 1, anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(2450), 1, anon_sym_LBRACK, - STATE(1628), 1, - sym_FnCallArguments, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2453), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1627), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 7, + ACTIONS(1269), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1216), 15, + ACTIONS(1271), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133063,36 +133734,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54339] = 11, + [55002] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2443), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1644), 1, - sym_FnCallArguments, - STATE(1754), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1641), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 7, + ACTIONS(1265), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1210), 14, + ACTIONS(1267), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133105,36 +133771,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54394] = 10, + [55050] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1629), 1, - sym_FnCallArguments, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1630), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 7, + ACTIONS(1257), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 15, + ACTIONS(1259), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133150,36 +133814,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54447] = 11, + [55098] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2443), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1679), 1, - sym_FnCallArguments, - STATE(1723), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1661), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1214), 7, + ACTIONS(1261), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1216), 14, + ACTIONS(1263), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133192,38 +133851,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54502] = 11, + [55146] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2443), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1664), 1, - sym_FnCallArguments, - STATE(1723), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1663), 2, + STATE(1642), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 7, + ACTIONS(1253), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1210), 14, + ACTIONS(1255), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133236,27 +133891,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54557] = 11, + [55194] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1212), 1, - anon_sym_COLON, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2445), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1648), 1, + STATE(1664), 1, sym_FnCallArguments, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1649), 2, + STATE(1665), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, ACTIONS(1214), 7, @@ -133282,34 +133936,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54612] = 10, + [55246] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, - ACTIONS(2437), 1, - anon_sym_LPAREN, - ACTIONS(2439), 1, - anon_sym_LBRACK, - STATE(1625), 1, - sym_FnCallArguments, - STATE(1656), 1, - sym_SuffixOp, - ACTIONS(2441), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1639), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 7, + ACTIONS(918), 1, + anon_sym_BSLASH_BSLASH, + STATE(1640), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1245), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1198), 15, + ACTIONS(1247), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133323,24 +133970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54665] = 8, + [55288] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2451), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2454), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2457), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 8, + ACTIONS(1282), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133349,7 +133997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 15, + ACTIONS(1284), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133365,22 +134013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54713] = 8, + [55336] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1630), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 8, + ACTIONS(1229), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133389,7 +134037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 15, + ACTIONS(1231), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133405,22 +134053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54761] = 8, + [55384] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1638), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 8, + ACTIONS(1241), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133429,7 +134077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 15, + ACTIONS(1243), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133445,31 +134093,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54809] = 8, + [55432] = 10, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2441), 1, + anon_sym_LPAREN, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1653), 1, + sym_FnCallArguments, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1651), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 8, + ACTIONS(1210), 7, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1212), 14, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [55484] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2456), 1, + anon_sym_BSLASH_BSLASH, + STATE(1640), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1222), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 15, + ACTIONS(1224), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133483,24 +134169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54857] = 8, + [55526] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 8, + ACTIONS(1229), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133509,7 +134196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 15, + ACTIONS(1231), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133525,22 +134212,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54905] = 8, + [55574] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1636), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 8, + ACTIONS(1237), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133549,7 +134236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 15, + ACTIONS(1239), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133565,22 +134252,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [54953] = 8, + [55622] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1626), 2, + STATE(1629), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 8, + ACTIONS(1249), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133589,7 +134276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 15, + ACTIONS(1251), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133605,22 +134292,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55001] = 8, + [55670] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2439), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1632), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 8, + ACTIONS(1249), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133629,7 +134316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 15, + ACTIONS(1251), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133645,34 +134332,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55049] = 10, + [55718] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2431), 1, anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2435), 1, anon_sym_LBRACK, - STATE(1657), 1, - sym_FnCallArguments, - STATE(1723), 1, + STATE(1670), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2437), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1658), 2, + STATE(1636), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 7, + ACTIONS(1233), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1198), 14, + ACTIONS(1235), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133685,36 +134369,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55101] = 10, + [55766] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2445), 1, + ACTIONS(1020), 1, + anon_sym_BSLASH_BSLASH, + STATE(1648), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1245), 11, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1640), 1, - sym_FnCallArguments, - STATE(1754), 1, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1247), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_DOT, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [55807] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1643), 2, + STATE(1655), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 7, + ACTIONS(1253), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 14, + ACTIONS(1255), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133729,34 +134447,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55153] = 10, + [55854] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2445), 1, + ACTIONS(2459), 1, + anon_sym_BSLASH_BSLASH, + STATE(1648), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + ACTIONS(1222), 11, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2447), 1, anon_sym_LBRACK, - STATE(1670), 1, - sym_FnCallArguments, - STATE(1723), 1, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1224), 15, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_DOT, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [55895] = 8, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1665), 2, + STATE(1657), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1218), 7, + ACTIONS(1233), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1220), 14, + ACTIONS(1235), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133771,34 +134522,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55205] = 10, + [55942] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2445), 1, - anon_sym_LPAREN, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1645), 1, - sym_FnCallArguments, - STATE(1754), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1647), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1196), 7, + ACTIONS(1241), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1198), 14, + ACTIONS(1243), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133813,22 +134561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55257] = 8, + [55989] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1624), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 8, + ACTIONS(1229), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133837,7 +134585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 15, + ACTIONS(1231), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133850,25 +134598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55305] = 8, + [56036] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1656), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 8, + ACTIONS(1249), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133877,7 +134624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 15, + ACTIONS(1251), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133890,25 +134637,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55353] = 8, + [56083] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1659), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 8, + ACTIONS(1229), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133917,7 +134663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 15, + ACTIONS(1231), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133930,25 +134676,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55401] = 8, + [56130] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 8, + ACTIONS(1249), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133957,7 +134702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 15, + ACTIONS(1251), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -133970,25 +134715,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55449] = 8, + [56177] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2435), 1, - anon_sym_DOT, ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1656), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2441), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1623), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 8, + ACTIONS(1237), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -133997,7 +134741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 15, + ACTIONS(1239), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134010,25 +134754,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55497] = 8, + [56224] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1650), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 8, + ACTIONS(1261), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134037,7 +134780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 14, + ACTIONS(1263), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134052,22 +134795,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55544] = 8, + [56271] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1654), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 8, + ACTIONS(1282), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134076,7 +134819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 14, + ACTIONS(1284), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134091,26 +134834,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55591] = 5, + [56318] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2460), 1, - aux_sym_LINESTRING_token1, - STATE(1646), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1275), 11, + ACTIONS(2462), 1, + anon_sym_DOT, + ACTIONS(2465), 1, + anon_sym_LBRACK, + STATE(1760), 1, + sym_SuffixOp, + ACTIONS(2468), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1658), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1269), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1277), 16, + ACTIONS(1271), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134123,26 +134871,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55632] = 8, + [56365] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1654), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 8, + ACTIONS(1265), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134151,7 +134897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 14, + ACTIONS(1267), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134166,22 +134912,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55679] = 8, + [56412] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1760), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1653), 2, + STATE(1658), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 8, + ACTIONS(1257), 8, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134190,7 +134936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 14, + ACTIONS(1259), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134205,31 +134951,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55726] = 8, + [56459] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1652), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 8, + ACTIONS(1282), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 14, + ACTIONS(1284), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134244,26 +134989,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55773] = 5, + [56505] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2462), 1, - aux_sym_LINESTRING_token1, - STATE(1646), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1281), 11, + ACTIONS(2433), 1, + anon_sym_LPAREN, + STATE(1719), 1, + sym_FnCallArguments, + ACTIONS(1295), 10, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1283), 16, + ACTIONS(1297), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134280,31 +135024,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55814] = 8, + [56545] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1754), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1654), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 8, + ACTIONS(526), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 14, + ACTIONS(528), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134317,33 +135053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55861] = 8, + [56581] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1651), 2, + STATE(1684), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 8, + ACTIONS(1249), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 14, + ACTIONS(1251), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134358,31 +135095,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55908] = 8, + [56627] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1654), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 8, + ACTIONS(1249), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 14, + ACTIONS(1251), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134397,31 +135133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [55955] = 8, + [56673] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1754), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1654), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 8, + ACTIONS(558), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 14, + ACTIONS(560), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134434,33 +135162,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56002] = 8, + [56709] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1754), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1654), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 8, + ACTIONS(2471), 1, + anon_sym_else, + STATE(1800), 1, + sym__ElseTypeExprTail, + ACTIONS(1311), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 14, + ACTIONS(1313), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134473,33 +135198,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56049] = 8, + [56749] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1654), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 8, + ACTIONS(1241), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 14, + ACTIONS(1243), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134514,31 +135239,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56096] = 8, + [56795] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1754), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1654), 2, + STATE(1661), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 8, + ACTIONS(1233), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 14, + ACTIONS(1235), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134553,31 +135277,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56143] = 8, + [56841] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, - anon_sym_DOT, - ACTIONS(2468), 1, - anon_sym_LBRACK, - STATE(1754), 1, - sym_SuffixOp, - ACTIONS(2471), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1654), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 8, + ACTIONS(2473), 1, + anon_sym_LPAREN, + STATE(1704), 1, + sym_FnCallArguments, + ACTIONS(1286), 10, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 14, + ACTIONS(1288), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134590,32 +135308,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56190] = 8, + [56881] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1230), 7, + ACTIONS(2471), 1, + anon_sym_else, + STATE(1801), 1, + sym__ElseTypeExprTail, + ACTIONS(1307), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1232), 14, + ACTIONS(1309), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134628,27 +135344,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56236] = 5, + [56921] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2474), 1, - anon_sym_LPAREN, - STATE(1685), 1, - sym_FnCallArguments, - ACTIONS(1294), 10, + ACTIONS(2471), 1, + anon_sym_else, + STATE(1802), 1, + sym__ElseTypeExprTail, + ACTIONS(1303), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 16, + ACTIONS(1305), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134661,26 +135379,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56276] = 8, + [56961] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1676), 2, + STATE(1685), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 7, + ACTIONS(1253), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134688,7 +135405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 14, + ACTIONS(1255), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134703,22 +135420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56322] = 8, + [57007] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1672), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1226), 7, + ACTIONS(1229), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134726,7 +135443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1228), 14, + ACTIONS(1231), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134741,61 +135458,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56368] = 5, + [57053] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 1, - anon_sym_else, - STATE(1794), 1, - sym__ElseTypeExprTail, - ACTIONS(1301), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, anon_sym_LBRACK, + STATE(1766), 1, + sym_SuffixOp, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1303), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [56408] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2477), 1, - anon_sym_else, - STATE(1796), 1, - sym__ElseTypeExprTail, - ACTIONS(1309), 11, + STATE(1679), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1257), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1311), 15, + ACTIONS(1259), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134808,25 +135494,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56448] = 8, + [57099] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1672), 2, + STATE(1678), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1234), 7, + ACTIONS(1229), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134834,7 +135519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1236), 14, + ACTIONS(1231), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134849,10 +135534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56494] = 3, + [57145] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(566), 12, + ACTIONS(562), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134865,7 +135550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(568), 16, + ACTIONS(564), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134882,22 +135567,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56530] = 8, + [57181] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1672), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1222), 7, + ACTIONS(1265), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134905,7 +135590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1224), 14, + ACTIONS(1267), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134920,22 +135605,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56576] = 8, + [57227] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2462), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2465), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2468), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1673), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1250), 7, + ACTIONS(1269), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -134943,7 +135628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1252), 14, + ACTIONS(1271), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134958,30 +135643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56622] = 8, + [57273] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 7, + STATE(1705), 1, + sym__ElseTypeExprTail, + ACTIONS(1311), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 14, + ACTIONS(1313), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -134994,16 +135673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56668] = 5, + [57311] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2477), 1, - anon_sym_else, - STATE(1797), 1, - sym__ElseTypeExprTail, - ACTIONS(1288), 11, + ACTIONS(1299), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135014,8 +135691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1290), 15, + ACTIONS(1301), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135028,18 +135706,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56708] = 4, + [57347] = 3, ACTIONS(3), 1, sym_line_comment, - STATE(1683), 1, - sym__ElseTypeExprTail, - ACTIONS(1288), 11, + ACTIONS(522), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -135048,7 +135726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1290), 16, + ACTIONS(524), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135065,14 +135743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56746] = 5, + [57383] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2479), 1, - aux_sym_LINESTRING_token1, - STATE(1668), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1281), 11, + STATE(1706), 1, + sym__ElseTypeExprTail, + ACTIONS(1307), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135084,7 +135760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1283), 15, + ACTIONS(1309), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135097,26 +135773,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56786] = 3, + [57421] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(570), 12, + ACTIONS(2439), 1, + anon_sym_DOT, + ACTIONS(2443), 1, + anon_sym_LBRACK, + STATE(1766), 1, + sym_SuffixOp, + ACTIONS(2445), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(1679), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1261), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(572), 16, + ACTIONS(1263), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135129,26 +135813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56822] = 8, + [57467] = 8, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, + ACTIONS(2439), 1, anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(2443), 1, anon_sym_LBRACK, - STATE(1723), 1, + STATE(1766), 1, sym_SuffixOp, - ACTIONS(2449), 2, + ACTIONS(2445), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1655), 2, + STATE(1679), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1254), 7, + ACTIONS(1237), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135156,7 +135838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1256), 14, + ACTIONS(1239), 14, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135171,12 +135853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56868] = 4, + [57513] = 4, ACTIONS(3), 1, sym_line_comment, - STATE(1693), 1, - sym__ElseTypeExprTail, - ACTIONS(1301), 11, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + ACTIONS(568), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135188,7 +135870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1303), 16, + ACTIONS(570), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135205,30 +135887,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56906] = 8, + [57551] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2465), 1, - anon_sym_DOT, - ACTIONS(2468), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2471), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1262), 7, + STATE(1707), 1, + sym__ElseTypeExprTail, + ACTIONS(1303), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 14, + ACTIONS(1305), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135241,32 +135917,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56952] = 8, + [57589] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, + ACTIONS(1355), 11, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1246), 7, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1357), 16, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_DOT, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [57624] = 5, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(1841), 1, + sym_FnCallArguments, + ACTIONS(1295), 10, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1248), 14, + ACTIONS(1297), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135279,14 +135984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [56998] = 4, + [57663] = 3, ACTIONS(3), 1, sym_line_comment, - STATE(1694), 1, - sym__ElseTypeExprTail, - ACTIONS(1309), 11, + ACTIONS(516), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135298,7 +136002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1311), 16, + ACTIONS(518), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135315,14 +136019,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57036] = 3, + [57698] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(538), 12, + ACTIONS(1475), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -135331,7 +136034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(540), 16, + ACTIONS(1477), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135348,30 +136051,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57072] = 8, + [57733] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1242), 7, + ACTIONS(1555), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1244), 14, + ACTIONS(1557), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135384,32 +136079,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57118] = 8, + [57768] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1672), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1238), 7, + ACTIONS(1319), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1240), 14, + ACTIONS(1321), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135422,16 +136111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57164] = 5, + [57803] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2482), 1, - aux_sym_LINESTRING_token1, - STATE(1668), 1, - aux_sym_LINESTRING_repeat1, - ACTIONS(1275), 11, + ACTIONS(1467), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135443,7 +136130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1277), 15, + ACTIONS(1469), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135456,33 +136143,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57204] = 8, + [57838] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2443), 1, - anon_sym_DOT, - ACTIONS(2447), 1, - anon_sym_LBRACK, - STATE(1723), 1, - sym_SuffixOp, - ACTIONS(2449), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(1677), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1258), 7, + ACTIONS(1563), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1260), 14, + ACTIONS(1565), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135495,16 +136175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, + anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57250] = 3, + [57873] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(526), 12, + ACTIONS(1463), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -135513,7 +136194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(528), 16, + ACTIONS(1465), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135530,12 +136211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57286] = 4, + [57908] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - ACTIONS(532), 11, + ACTIONS(1491), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135547,7 +136226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(534), 16, + ACTIONS(1493), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135564,25 +136243,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57324] = 5, + [57943] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2437), 1, - anon_sym_LPAREN, - STATE(1705), 1, - sym_FnCallArguments, - ACTIONS(1305), 10, + ACTIONS(1431), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1307), 16, + ACTIONS(1433), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135599,10 +136275,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57364] = 3, + [57978] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1441), 11, + ACTIONS(1427), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135614,7 +136290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1443), 16, + ACTIONS(1429), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135631,12 +136307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57399] = 4, + [58013] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - ACTIONS(532), 11, + ACTIONS(1423), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135648,7 +136322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(534), 15, + ACTIONS(1425), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135661,13 +136335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57436] = 3, + [58048] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1262), 11, + ACTIONS(1407), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135679,7 +136354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 16, + ACTIONS(1409), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135696,10 +136371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57471] = 3, + [58083] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1319), 11, + ACTIONS(1487), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135711,7 +136386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1321), 16, + ACTIONS(1489), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135728,10 +136403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57506] = 3, + [58118] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1469), 11, + ACTIONS(1533), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135743,7 +136418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1471), 16, + ACTIONS(1535), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135760,10 +136435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57541] = 3, + [58153] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1569), 11, + ACTIONS(1269), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135775,7 +136450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1571), 16, + ACTIONS(1271), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135792,10 +136467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57576] = 3, + [58188] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1549), 11, + ACTIONS(1483), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135807,7 +136482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1551), 16, + ACTIONS(1485), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135824,10 +136499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57611] = 3, + [58223] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 11, + ACTIONS(1375), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135839,7 +136514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1547), 16, + ACTIONS(1377), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135856,10 +136531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57646] = 3, + [58258] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1525), 11, + ACTIONS(1371), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135871,7 +136546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1527), 16, + ACTIONS(1373), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135888,10 +136563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57681] = 3, + [58293] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1513), 11, + ACTIONS(512), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135903,7 +136578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1515), 16, + ACTIONS(510), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135920,10 +136595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57716] = 3, + [58328] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1453), 11, + ACTIONS(1327), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135935,7 +136610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1455), 16, + ACTIONS(1329), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135952,10 +136627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57751] = 3, + [58363] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1501), 11, + ACTIONS(1403), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135967,7 +136642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1503), 16, + ACTIONS(1405), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -135984,10 +136659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57786] = 3, + [58398] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1565), 11, + ACTIONS(1419), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -135999,7 +136674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1567), 16, + ACTIONS(1421), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136016,10 +136691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57821] = 3, + [58433] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1343), 11, + ACTIONS(1391), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136031,7 +136706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1345), 16, + ACTIONS(1393), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136048,10 +136723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57856] = 3, + [58468] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1355), 11, + ACTIONS(1383), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136063,7 +136738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1357), 16, + ACTIONS(1385), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136080,10 +136755,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57891] = 3, + [58503] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1401), 11, + ACTIONS(1395), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136095,7 +136770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1403), 16, + ACTIONS(1397), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136112,10 +136787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57926] = 3, + [58538] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1417), 11, + ACTIONS(1471), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136127,7 +136802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1419), 16, + ACTIONS(1473), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136144,10 +136819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57961] = 3, + [58573] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1405), 11, + ACTIONS(1495), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136159,7 +136834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1407), 16, + ACTIONS(1497), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136176,10 +136851,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [57996] = 3, + [58608] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(516), 11, + ACTIONS(1571), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136191,7 +136866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(518), 16, + ACTIONS(1573), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136208,10 +136883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58031] = 3, + [58643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1339), 11, + ACTIONS(508), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136223,7 +136898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1341), 16, + ACTIONS(506), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136240,10 +136915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58066] = 3, + [58678] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1533), 11, + ACTIONS(1551), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136255,7 +136930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1535), 16, + ACTIONS(1553), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136272,10 +136947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58101] = 3, + [58713] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(508), 11, + ACTIONS(1547), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136287,7 +136962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(506), 16, + ACTIONS(1549), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136304,7 +136979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58136] = 3, + [58748] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1537), 11, @@ -136336,7 +137011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58171] = 3, + [58783] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1517), 11, @@ -136368,10 +137043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58206] = 3, + [58818] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1509), 11, + ACTIONS(1525), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136383,7 +137058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1511), 16, + ACTIONS(1527), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136400,10 +137075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58241] = 3, + [58853] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1485), 11, + ACTIONS(1513), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136415,7 +137090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1487), 16, + ACTIONS(1515), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136432,10 +137107,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58276] = 3, + [58888] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1429), 11, + ACTIONS(1503), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136447,7 +137122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1431), 16, + ACTIONS(1505), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136464,10 +137139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58311] = 3, + [58923] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1497), 11, + ACTIONS(1459), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136479,7 +137154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1499), 16, + ACTIONS(1461), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136496,10 +137171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58346] = 3, + [58958] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1477), 11, + ACTIONS(1451), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136511,7 +137186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1479), 16, + ACTIONS(1453), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136528,10 +137203,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58381] = 3, + [58993] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1433), 11, + ACTIONS(1447), 11, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + sym_doc_comment, + anon_sym_AT, + ACTIONS(1449), 16, + anon_sym_pub, + anon_sym_test, + anon_sym_comptime, + anon_sym_export, + anon_sym_extern, + anon_sym_inline, + anon_sym_noinline, + anon_sym_threadlocal, + anon_sym_usingnamespace, + anon_sym_fn, + anon_sym_const, + anon_sym_var, + anon_sym_else, + anon_sym_DOT, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [59028] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1439), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136543,7 +137250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1435), 16, + ACTIONS(1441), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136560,10 +137267,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58416] = 3, + [59063] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1457), 11, + ACTIONS(1415), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136575,7 +137282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1459), 16, + ACTIONS(1417), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136592,10 +137299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58451] = 3, + [59098] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1553), 11, + ACTIONS(1299), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136606,8 +137313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, + anon_sym_BSLASH_BSLASH, anon_sym_AT, - ACTIONS(1555), 16, + ACTIONS(1301), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136620,14 +137328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58486] = 3, + [59133] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1425), 11, + ACTIONS(1367), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136639,7 +137346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1427), 16, + ACTIONS(1369), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136656,10 +137363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58521] = 3, + [59168] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1421), 11, + ACTIONS(1351), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136671,7 +137378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1423), 16, + ACTIONS(1353), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136688,10 +137395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58556] = 3, + [59203] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1409), 11, + ACTIONS(1323), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136703,7 +137410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1411), 16, + ACTIONS(1325), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136720,14 +137427,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58591] = 3, + [59238] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(570), 12, + ACTIONS(1339), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -136736,7 +137442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(572), 15, + ACTIONS(1341), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136749,13 +137455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, + anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58626] = 3, + [59273] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1397), 11, + ACTIONS(1347), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136767,7 +137474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1399), 16, + ACTIONS(1349), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136784,10 +137491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58661] = 3, + [59308] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1379), 11, + ACTIONS(1359), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136799,7 +137506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1381), 16, + ACTIONS(1361), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136816,14 +137523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58696] = 3, + [59343] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(538), 12, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + ACTIONS(568), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, - anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -136832,7 +137540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(540), 15, + ACTIONS(570), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136848,10 +137556,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58731] = 3, + [59380] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1363), 11, + ACTIONS(1379), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136863,7 +137571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1365), 16, + ACTIONS(1381), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136880,44 +137588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58766] = 5, + [59415] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN, - STATE(1791), 1, - sym_FnCallArguments, - ACTIONS(1294), 10, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1296), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [58805] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1351), 11, + ACTIONS(1411), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136929,7 +137603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1353), 16, + ACTIONS(1413), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -136946,44 +137620,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58840] = 5, + [59450] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN, - STATE(1816), 1, - sym_FnCallArguments, - ACTIONS(1305), 10, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1307), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [58879] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1541), 11, + ACTIONS(1315), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -136995,7 +137635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1543), 16, + ACTIONS(1317), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137012,10 +137652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58914] = 3, + [59485] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(512), 11, + ACTIONS(1443), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137027,7 +137667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(510), 16, + ACTIONS(1445), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137044,10 +137684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58949] = 3, + [59520] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1557), 11, + ACTIONS(1455), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137059,7 +137699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1559), 16, + ACTIONS(1457), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137076,10 +137716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [58984] = 3, + [59555] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1561), 11, + ACTIONS(1499), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137091,7 +137731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1563), 16, + ACTIONS(1501), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137108,7 +137748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59019] = 3, + [59590] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(526), 12, @@ -137140,74 +137780,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59054] = 3, + [59625] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(566), 12, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(568), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [59089] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1505), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1507), 16, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [59124] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1437), 11, + ACTIONS(1507), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137219,7 +137795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1439), 16, + ACTIONS(1509), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137236,10 +137812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59159] = 3, + [59660] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1313), 11, + ACTIONS(1521), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137251,7 +137827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1315), 16, + ACTIONS(1523), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137268,10 +137844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59194] = 3, + [59695] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1445), 11, + ACTIONS(1331), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137283,7 +137859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1447), 16, + ACTIONS(1333), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137300,10 +137876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59229] = 3, + [59730] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1449), 11, + ACTIONS(536), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137315,7 +137891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1451), 16, + ACTIONS(534), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137332,10 +137908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59264] = 3, + [59765] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1489), 11, + ACTIONS(540), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137347,7 +137923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1491), 16, + ACTIONS(538), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137364,10 +137940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59299] = 3, + [59800] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1493), 11, + ACTIONS(548), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137379,7 +137955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1495), 16, + ACTIONS(546), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137396,10 +137972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59334] = 3, + [59835] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1327), 11, + ACTIONS(1479), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137411,7 +137987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1329), 16, + ACTIONS(1481), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137428,10 +138004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59369] = 3, + [59870] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1323), 11, + ACTIONS(552), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137443,7 +138019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1325), 16, + ACTIONS(550), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137460,13 +138036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59404] = 3, + [59905] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1481), 11, + ACTIONS(522), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -137475,7 +138052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1483), 16, + ACTIONS(524), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137488,17 +138065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59439] = 3, + [59940] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1335), 11, + ACTIONS(562), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -137507,7 +138084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1337), 16, + ACTIONS(564), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137520,17 +138097,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59474] = 3, + [59975] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1347), 11, + ACTIONS(558), 12, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, + anon_sym_COLON, anon_sym_EQ, anon_sym_RBRACE, anon_sym_LPAREN, @@ -137539,7 +138116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1349), 16, + ACTIONS(560), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137552,14 +138129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59509] = 3, + [60010] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1359), 11, + ACTIONS(1435), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137571,7 +138147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1361), 16, + ACTIONS(1437), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137588,10 +138164,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59544] = 3, + [60045] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1331), 11, + ACTIONS(1399), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137603,7 +138179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1333), 16, + ACTIONS(1401), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137620,10 +138196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59579] = 3, + [60080] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1367), 11, + ACTIONS(1387), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137635,7 +138211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1369), 16, + ACTIONS(1389), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137652,54 +138228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59614] = 3, + [60115] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(548), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, + ACTIONS(2476), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(546), 16, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_else, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [59649] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(552), 11, + STATE(1796), 1, + sym_FnCallArguments, + ACTIONS(1286), 10, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, anon_sym_EQ, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(550), 16, + ACTIONS(1288), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137712,14 +138259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59684] = 3, + [60154] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(560), 11, + ACTIONS(1363), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137731,7 +138277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(558), 16, + ACTIONS(1365), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137748,10 +138294,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59719] = 3, + [60189] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1461), 11, + ACTIONS(1343), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137763,7 +138309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1463), 16, + ACTIONS(1345), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137780,10 +138326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59754] = 3, + [60224] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(524), 11, + ACTIONS(1335), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137795,7 +138341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(522), 16, + ACTIONS(1337), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137812,10 +138358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59789] = 3, + [60259] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 11, + ACTIONS(1529), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137827,7 +138373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1523), 16, + ACTIONS(1531), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137844,10 +138390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59824] = 3, + [60294] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1529), 11, + ACTIONS(1559), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137859,7 +138405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1531), 16, + ACTIONS(1561), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137876,14 +138422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59859] = 5, + [60329] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2484), 1, + ACTIONS(2441), 1, anon_sym_LPAREN, - STATE(1791), 1, + STATE(1796), 1, sym_FnCallArguments, - ACTIONS(1294), 10, + ACTIONS(1286), 10, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137894,7 +138440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1296), 15, + ACTIONS(1288), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137910,10 +138456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59898] = 3, + [60368] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1473), 11, + ACTIONS(1567), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137925,7 +138471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1475), 16, + ACTIONS(1569), 16, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137942,10 +138488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59933] = 3, + [60403] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1413), 11, + ACTIONS(1533), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137957,7 +138503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1415), 16, + ACTIONS(1535), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -137970,14 +138516,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [59968] = 3, + [60437] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1393), 11, + ACTIONS(1507), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -137989,7 +138534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1395), 16, + ACTIONS(1509), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138002,14 +138547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60003] = 3, + [60471] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1465), 11, + ACTIONS(1447), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138021,7 +138565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1467), 16, + ACTIONS(1449), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138034,46 +138578,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60038] = 3, + [60505] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1375), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1377), 16, + ACTIONS(7), 1, anon_sym_pub, + ACTIONS(9), 1, anon_sym_test, + ACTIONS(11), 1, anon_sym_comptime, + ACTIONS(13), 1, anon_sym_export, + ACTIONS(15), 1, anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, + ACTIONS(19), 1, anon_sym_threadlocal, + ACTIONS(21), 1, anon_sym_usingnamespace, + ACTIONS(23), 1, anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2479), 1, + anon_sym_RBRACE, + ACTIONS(2481), 1, + sym_container_doc_comment, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, anon_sym_const, anon_sym_var, - anon_sym_else, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [60073] = 3, + STATE(1854), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [60575] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1389), 11, + ACTIONS(1537), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138085,7 +138645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1391), 16, + ACTIONS(1539), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138098,14 +138658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60108] = 3, + [60609] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1371), 11, + ACTIONS(1547), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138117,7 +138676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1373), 16, + ACTIONS(1549), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138130,14 +138689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_else, anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60143] = 3, + [60643] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1327), 11, + ACTIONS(1499), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138149,7 +138707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1329), 15, + ACTIONS(1501), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138165,10 +138723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60177] = 3, + [60677] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1461), 11, + ACTIONS(512), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138180,7 +138738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1463), 15, + ACTIONS(510), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138196,10 +138754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60211] = 3, + [60711] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1335), 11, + ACTIONS(516), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138211,7 +138769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1337), 15, + ACTIONS(518), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138227,58 +138785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60245] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2489), 1, - anon_sym_pub, - ACTIONS(2492), 1, - anon_sym_test, - ACTIONS(2495), 1, - anon_sym_comptime, - ACTIONS(2498), 1, - anon_sym_export, - ACTIONS(2501), 1, - anon_sym_extern, - ACTIONS(2507), 1, - anon_sym_threadlocal, - ACTIONS(2510), 1, - anon_sym_usingnamespace, - ACTIONS(2513), 1, - anon_sym_fn, - ACTIONS(2519), 1, - sym_doc_comment, - ACTIONS(2522), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2525), 1, - anon_sym_AT, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(2487), 2, - ts_builtin_sym_end, - anon_sym_RBRACE, - ACTIONS(2504), 2, - anon_sym_inline, - anon_sym_noinline, - ACTIONS(2516), 2, - anon_sym_const, - anon_sym_var, - STATE(1765), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [60313] = 3, + [60745] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1433), 11, + ACTIONS(508), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138290,7 +138800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1435), 15, + ACTIONS(506), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138306,10 +138816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60347] = 3, + [60779] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1425), 11, + ACTIONS(1471), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138321,7 +138831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1427), 15, + ACTIONS(1473), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138337,10 +138847,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60381] = 3, + [60813] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1477), 11, + ACTIONS(540), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138352,7 +138862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1479), 15, + ACTIONS(538), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138368,10 +138878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60415] = 3, + [60847] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1417), 11, + ACTIONS(548), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138383,7 +138893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1419), 15, + ACTIONS(546), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138399,10 +138909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60449] = 3, + [60881] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1529), 11, + ACTIONS(1319), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138414,7 +138924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1531), 15, + ACTIONS(1321), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138430,10 +138940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60483] = 3, + [60915] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1497), 11, + ACTIONS(1439), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138445,7 +138955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1499), 15, + ACTIONS(1441), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138461,7 +138971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60517] = 21, + [60949] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -138486,17 +138996,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2528), 1, + ACTIONS(2483), 1, anon_sym_RBRACE, - ACTIONS(2530), 1, + ACTIONS(2485), 1, sym_container_doc_comment, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -138504,16 +139014,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1850), 5, + STATE(1859), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [60587] = 3, + [61019] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(508), 11, + ACTIONS(1517), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138525,7 +139035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(506), 15, + ACTIONS(1519), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138541,10 +139051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60621] = 3, + [61053] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1473), 11, + ACTIONS(1525), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138556,7 +139066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1475), 15, + ACTIONS(1527), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138572,10 +139082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60655] = 3, + [61087] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1413), 11, + ACTIONS(1475), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138587,7 +139097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1415), 15, + ACTIONS(1477), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138603,10 +139113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60689] = 3, + [61121] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1429), 11, + ACTIONS(1567), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138618,7 +139128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1431), 15, + ACTIONS(1569), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138634,10 +139144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60723] = 3, + [61155] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1485), 11, + ACTIONS(1479), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138649,7 +139159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1487), 15, + ACTIONS(1481), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138665,10 +139175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60757] = 3, + [61189] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1445), 11, + ACTIONS(1491), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138680,7 +139190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1447), 15, + ACTIONS(1493), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138696,10 +139206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60791] = 3, + [61223] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1389), 11, + ACTIONS(1431), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138711,7 +139221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1391), 15, + ACTIONS(1433), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138727,10 +139237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60825] = 3, + [61257] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1375), 11, + ACTIONS(1427), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138742,7 +139252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1377), 15, + ACTIONS(1429), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138758,10 +139268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60859] = 3, + [61291] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1313), 11, + ACTIONS(1423), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138773,7 +139283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1315), 15, + ACTIONS(1425), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138789,10 +139299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60893] = 3, + [61325] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(512), 11, + ACTIONS(1407), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138804,7 +139314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(510), 15, + ACTIONS(1409), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138820,7 +139330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [60927] = 21, + [61359] = 21, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -138845,17 +139355,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2532), 1, + ACTIONS(2487), 1, anon_sym_RBRACE, - ACTIONS(2534), 1, + ACTIONS(2489), 1, sym_container_doc_comment, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -138863,16 +139373,16 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1851), 5, + STATE(1861), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [60997] = 3, + [61429] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1513), 11, + ACTIONS(1467), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138884,7 +139394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1515), 15, + ACTIONS(1469), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138900,10 +139410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61031] = 3, + [61463] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1525), 11, + ACTIONS(1269), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138915,7 +139425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1527), 15, + ACTIONS(1271), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138931,10 +139441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61065] = 3, + [61497] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1545), 11, + ACTIONS(1415), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138946,7 +139456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1547), 15, + ACTIONS(1417), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138962,10 +139472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61099] = 3, + [61531] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1549), 11, + ACTIONS(1435), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -138977,7 +139487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1551), 15, + ACTIONS(1437), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -138993,10 +139503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61133] = 3, + [61565] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1569), 11, + ACTIONS(1367), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139008,7 +139518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1571), 15, + ACTIONS(1369), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139024,10 +139534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61167] = 3, + [61599] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1469), 11, + ACTIONS(1483), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139039,7 +139549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1471), 15, + ACTIONS(1485), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139055,10 +139565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61201] = 3, + [61633] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(516), 11, + ACTIONS(1375), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139070,7 +139580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(518), 15, + ACTIONS(1377), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139086,10 +139596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61235] = 3, + [61667] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1262), 11, + ACTIONS(1371), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139101,7 +139611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1264), 15, + ACTIONS(1373), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139117,10 +139627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61269] = 3, + [61701] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1489), 11, + ACTIONS(1355), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139132,7 +139642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1491), 15, + ACTIONS(1357), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139148,10 +139658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61303] = 3, + [61735] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1347), 11, + ACTIONS(1399), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139163,7 +139673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1349), 15, + ACTIONS(1401), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139179,41 +139689,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61337] = 3, + [61769] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1453), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1455), 15, + ACTIONS(7), 1, anon_sym_pub, + ACTIONS(9), 1, anon_sym_test, + ACTIONS(11), 1, anon_sym_comptime, + ACTIONS(13), 1, anon_sym_export, + ACTIONS(15), 1, anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, + ACTIONS(19), 1, anon_sym_threadlocal, + ACTIONS(21), 1, anon_sym_usingnamespace, + ACTIONS(23), 1, anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2491), 1, + anon_sym_RBRACE, + ACTIONS(2493), 1, + sym_container_doc_comment, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, anon_sym_const, anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [61371] = 3, + STATE(1852), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [61839] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1421), 11, + ACTIONS(1327), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139225,7 +139753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1423), 15, + ACTIONS(1329), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139241,10 +139769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61405] = 3, + [61873] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1501), 11, + ACTIONS(1383), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139256,7 +139784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1503), 15, + ACTIONS(1385), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139272,10 +139800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61439] = 3, + [61907] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1441), 11, + ACTIONS(1403), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139287,7 +139815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1443), 15, + ACTIONS(1405), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139303,10 +139831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61473] = 3, + [61941] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1565), 11, + ACTIONS(1419), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139318,7 +139846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1567), 15, + ACTIONS(1421), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139334,10 +139862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61507] = 3, + [61975] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1359), 11, + ACTIONS(1513), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139349,7 +139877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1361), 15, + ACTIONS(1515), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139365,10 +139893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61541] = 3, + [62009] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1343), 11, + ACTIONS(1351), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139380,7 +139908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1345), 15, + ACTIONS(1353), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139396,10 +139924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61575] = 3, + [62043] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1355), 11, + ACTIONS(1529), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139411,7 +139939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1357), 15, + ACTIONS(1531), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139427,10 +139955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61609] = 3, + [62077] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1449), 11, + ACTIONS(1463), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139442,7 +139970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1451), 15, + ACTIONS(1465), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139458,10 +139986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61643] = 3, + [62111] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1401), 11, + ACTIONS(1503), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139473,7 +140001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1403), 15, + ACTIONS(1505), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139489,10 +140017,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61677] = 3, + [62145] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1331), 11, + ACTIONS(1495), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139504,7 +140032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1333), 15, + ACTIONS(1497), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139520,59 +140048,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61711] = 21, + [62179] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_pub, - ACTIONS(9), 1, - anon_sym_test, - ACTIONS(11), 1, - anon_sym_comptime, - ACTIONS(13), 1, - anon_sym_export, - ACTIONS(15), 1, - anon_sym_extern, - ACTIONS(19), 1, - anon_sym_threadlocal, - ACTIONS(21), 1, - anon_sym_usingnamespace, - ACTIONS(23), 1, - anon_sym_fn, - ACTIONS(29), 1, - sym_doc_comment, - ACTIONS(31), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, - anon_sym_AT, - ACTIONS(2536), 1, - anon_sym_RBRACE, - ACTIONS(2538), 1, - sym_container_doc_comment, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(17), 2, - anon_sym_inline, - anon_sym_noinline, - ACTIONS(25), 2, - anon_sym_const, - anon_sym_var, - STATE(1853), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [61781] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(560), 11, + ACTIONS(1571), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139584,7 +140063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(558), 15, + ACTIONS(1573), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139600,10 +140079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61815] = 3, + [62213] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1509), 11, + ACTIONS(536), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139615,7 +140094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1511), 15, + ACTIONS(534), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139631,10 +140110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61849] = 3, + [62247] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1465), 11, + ACTIONS(552), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139646,7 +140125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1467), 15, + ACTIONS(550), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139662,10 +140141,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61883] = 3, + [62281] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1371), 11, + ACTIONS(1331), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139677,7 +140156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1373), 15, + ACTIONS(1333), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139693,10 +140172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61917] = 3, + [62315] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1533), 11, + ACTIONS(1335), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139708,7 +140187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1535), 15, + ACTIONS(1337), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139724,10 +140203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61951] = 3, + [62349] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(552), 11, + ACTIONS(1347), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139739,7 +140218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(550), 15, + ACTIONS(1349), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139755,10 +140234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [61985] = 3, + [62383] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1517), 11, + ACTIONS(1455), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139770,7 +140249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1519), 15, + ACTIONS(1457), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139786,10 +140265,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62019] = 3, + [62417] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1393), 11, + ACTIONS(1563), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139801,7 +140280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1395), 15, + ACTIONS(1565), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139817,10 +140296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62053] = 3, + [62451] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1409), 11, + ACTIONS(1487), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139832,7 +140311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1411), 15, + ACTIONS(1489), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139848,10 +140327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62087] = 3, + [62485] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1351), 11, + ACTIONS(1555), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139863,7 +140342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1353), 15, + ACTIONS(1557), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139879,10 +140358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62121] = 3, + [62519] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1537), 11, + ACTIONS(1359), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139894,7 +140373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1539), 15, + ACTIONS(1361), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139910,10 +140389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62155] = 3, + [62553] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1363), 11, + ACTIONS(1339), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139925,7 +140404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1365), 15, + ACTIONS(1341), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139941,10 +140420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62189] = 3, + [62587] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1319), 11, + ACTIONS(1391), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -139956,7 +140435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1321), 15, + ACTIONS(1393), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -139972,7 +140451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62223] = 3, + [62621] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(1379), 11, @@ -140003,152 +140482,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62257] = 21, + [62655] = 20, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, + ACTIONS(2497), 1, anon_sym_pub, - ACTIONS(9), 1, + ACTIONS(2500), 1, anon_sym_test, - ACTIONS(11), 1, + ACTIONS(2503), 1, anon_sym_comptime, - ACTIONS(13), 1, + ACTIONS(2506), 1, anon_sym_export, - ACTIONS(15), 1, + ACTIONS(2509), 1, anon_sym_extern, - ACTIONS(19), 1, + ACTIONS(2515), 1, anon_sym_threadlocal, - ACTIONS(21), 1, + ACTIONS(2518), 1, anon_sym_usingnamespace, - ACTIONS(23), 1, + ACTIONS(2521), 1, anon_sym_fn, - ACTIONS(29), 1, + ACTIONS(2527), 1, sym_doc_comment, - ACTIONS(31), 1, + ACTIONS(2530), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, + ACTIONS(2533), 1, anon_sym_AT, - ACTIONS(2540), 1, - anon_sym_RBRACE, - ACTIONS(2542), 1, - sym_container_doc_comment, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, - ACTIONS(17), 2, + ACTIONS(2495), 2, + ts_builtin_sym_end, + anon_sym_RBRACE, + ACTIONS(2512), 2, anon_sym_inline, anon_sym_noinline, - ACTIONS(25), 2, + ACTIONS(2524), 2, anon_sym_const, anon_sym_var, - STATE(1858), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [62327] = 3, + [62723] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1397), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1399), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [62361] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1457), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1459), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [62395] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1339), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1341), 15, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [62429] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(1541), 11, + ACTIONS(1451), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140160,7 +140545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1543), 15, + ACTIONS(1453), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140176,59 +140561,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62463] = 21, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_pub, - ACTIONS(9), 1, - anon_sym_test, - ACTIONS(11), 1, - anon_sym_comptime, - ACTIONS(13), 1, - anon_sym_export, - ACTIONS(15), 1, - anon_sym_extern, - ACTIONS(19), 1, - anon_sym_threadlocal, - ACTIONS(21), 1, - anon_sym_usingnamespace, - ACTIONS(23), 1, - anon_sym_fn, - ACTIONS(29), 1, - sym_doc_comment, - ACTIONS(31), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, - anon_sym_AT, - ACTIONS(2544), 1, - anon_sym_RBRACE, - ACTIONS(2546), 1, - sym_container_doc_comment, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(17), 2, - anon_sym_inline, - anon_sym_noinline, - ACTIONS(25), 2, - anon_sym_const, - anon_sym_var, - STATE(1846), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [62533] = 3, + [62757] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1557), 11, + ACTIONS(1521), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140240,7 +140576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1559), 15, + ACTIONS(1523), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140256,10 +140592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62567] = 3, + [62791] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1481), 11, + ACTIONS(1411), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140271,7 +140607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1483), 15, + ACTIONS(1413), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140287,10 +140623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62601] = 3, + [62825] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1367), 11, + ACTIONS(1459), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140302,7 +140638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1369), 15, + ACTIONS(1461), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140318,10 +140654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62635] = 3, + [62859] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1323), 11, + ACTIONS(1315), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140333,7 +140669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1325), 15, + ACTIONS(1317), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140349,10 +140685,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62669] = 3, + [62893] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(524), 11, + ACTIONS(1443), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140364,7 +140700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(522), 15, + ACTIONS(1445), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140380,10 +140716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62703] = 3, + [62927] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1521), 11, + ACTIONS(1559), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140395,7 +140731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1523), 15, + ACTIONS(1561), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140411,10 +140747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62737] = 3, + [62961] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(548), 11, + ACTIONS(1323), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140426,7 +140762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(546), 15, + ACTIONS(1325), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140442,10 +140778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62771] = 3, + [62995] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1493), 11, + ACTIONS(1387), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140457,7 +140793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1495), 15, + ACTIONS(1389), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140473,41 +140809,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62805] = 3, + [63029] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1405), 11, - ts_builtin_sym_end, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - sym_doc_comment, - anon_sym_AT, - ACTIONS(1407), 15, + ACTIONS(7), 1, anon_sym_pub, + ACTIONS(9), 1, anon_sym_test, + ACTIONS(11), 1, anon_sym_comptime, + ACTIONS(13), 1, anon_sym_export, + ACTIONS(15), 1, anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, + ACTIONS(19), 1, anon_sym_threadlocal, + ACTIONS(21), 1, anon_sym_usingnamespace, + ACTIONS(23), 1, anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2536), 1, + anon_sym_RBRACE, + ACTIONS(2538), 1, + sym_container_doc_comment, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, anon_sym_const, anon_sym_var, - anon_sym_DOT, - anon_sym_align, - aux_sym_IDENTIFIER_token1, - [62839] = 3, + STATE(1847), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [63099] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1437), 11, + ACTIONS(1551), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140519,7 +140873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1439), 15, + ACTIONS(1553), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140535,10 +140889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62873] = 3, + [63133] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1561), 11, + ACTIONS(1363), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140550,7 +140904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1563), 15, + ACTIONS(1365), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140566,10 +140920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62907] = 3, + [63167] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1553), 11, + ACTIONS(1395), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140581,7 +140935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1555), 15, + ACTIONS(1397), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140597,10 +140951,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62941] = 3, + [63201] = 21, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1505), 11, + ACTIONS(7), 1, + anon_sym_pub, + ACTIONS(9), 1, + anon_sym_test, + ACTIONS(11), 1, + anon_sym_comptime, + ACTIONS(13), 1, + anon_sym_export, + ACTIONS(15), 1, + anon_sym_extern, + ACTIONS(19), 1, + anon_sym_threadlocal, + ACTIONS(21), 1, + anon_sym_usingnamespace, + ACTIONS(23), 1, + anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2540), 1, + anon_sym_RBRACE, + ACTIONS(2542), 1, + sym_container_doc_comment, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, + anon_sym_const, + anon_sym_var, + STATE(1863), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [63271] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(1343), 11, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_BANG, @@ -140612,7 +141015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_QMARK, sym_doc_comment, anon_sym_AT, - ACTIONS(1507), 15, + ACTIONS(1345), 15, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -140628,7 +141031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_align, aux_sym_IDENTIFIER_token1, - [62975] = 21, + [63305] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140653,17 +141056,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2548), 1, + ACTIONS(2544), 1, anon_sym_RBRACE, - ACTIONS(2550), 1, - sym_container_doc_comment, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140671,13 +141072,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1860), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63045] = 20, + [63372] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140702,15 +141103,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2552), 1, + ACTIONS(2546), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140718,13 +141119,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63112] = 20, + [63439] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140749,15 +141150,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2554), 1, + ACTIONS(2548), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140765,13 +141166,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63179] = 20, + [63506] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140796,15 +141197,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2556), 1, + ACTIONS(2550), 1, + ts_builtin_sym_end, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, + anon_sym_const, + anon_sym_var, + STATE(1860), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [63573] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_pub, + ACTIONS(9), 1, + anon_sym_test, + ACTIONS(11), 1, + anon_sym_comptime, + ACTIONS(13), 1, + anon_sym_export, + ACTIONS(15), 1, + anon_sym_extern, + ACTIONS(19), 1, + anon_sym_threadlocal, + ACTIONS(21), 1, + anon_sym_usingnamespace, + ACTIONS(23), 1, + anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2552), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140812,13 +141260,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63246] = 20, + [63640] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140843,15 +141291,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2558), 1, + ACTIONS(2554), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140859,13 +141307,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1855), 5, + STATE(1853), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63313] = 20, + [63707] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140890,15 +141338,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2560), 1, + ACTIONS(2556), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140906,13 +141354,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1848), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63380] = 20, + [63774] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140937,15 +141385,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2562), 1, + ACTIONS(2558), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -140953,13 +141401,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1841), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63447] = 20, + [63841] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -140984,15 +141432,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2564), 1, + ACTIONS(2560), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141000,13 +141448,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63514] = 20, + [63908] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141031,15 +141479,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2564), 1, + ACTIONS(2562), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141047,13 +141495,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1842), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63581] = 20, + [63975] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141078,15 +141526,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2566), 1, + ACTIONS(2564), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141094,13 +141542,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1850), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63648] = 20, + [64042] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141125,15 +141573,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2568), 1, + ACTIONS(2550), 1, ts_builtin_sym_end, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141141,13 +141589,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63715] = 20, + [64109] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141172,15 +141620,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2562), 1, + ACTIONS(2546), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141188,13 +141636,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1864), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63782] = 20, + [64176] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141219,15 +141667,62 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2558), 1, + ACTIONS(2554), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, + sym_ContainerField, + STATE(1895), 1, + sym_VarDecl, + STATE(2113), 1, + sym_FnProto, + ACTIONS(17), 2, + anon_sym_inline, + anon_sym_noinline, + ACTIONS(25), 2, + anon_sym_const, + anon_sym_var, + STATE(1830), 5, + aux_sym__ContainerMembers, + sym__ContainerDeclarations, + sym_TestDecl, + sym_TopLevelComptime, + sym_TopLevelDecl, + [64243] = 20, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(7), 1, + anon_sym_pub, + ACTIONS(9), 1, + anon_sym_test, + ACTIONS(11), 1, + anon_sym_comptime, + ACTIONS(13), 1, + anon_sym_export, + ACTIONS(15), 1, + anon_sym_extern, + ACTIONS(19), 1, + anon_sym_threadlocal, + ACTIONS(21), 1, + anon_sym_usingnamespace, + ACTIONS(23), 1, + anon_sym_fn, + ACTIONS(29), 1, + sym_doc_comment, + ACTIONS(31), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(33), 1, + anon_sym_AT, + ACTIONS(2566), 1, + ts_builtin_sym_end, + STATE(1877), 1, + sym_IDENTIFIER, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141235,13 +141730,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63849] = 20, + [64310] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141266,15 +141761,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2570), 1, + ACTIONS(2564), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141282,13 +141777,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63916] = 20, + [64377] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141313,15 +141808,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2572), 1, + ACTIONS(2556), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141329,13 +141824,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1846), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [63983] = 20, + [64444] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141361,14 +141856,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(33), 1, anon_sym_AT, ACTIONS(2568), 1, - ts_builtin_sym_end, - STATE(1867), 1, + anon_sym_RBRACE, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141376,13 +141871,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1859), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [64050] = 20, + [64511] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141407,15 +141902,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2574), 1, + ACTIONS(2570), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141423,13 +141918,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, + STATE(1830), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [64117] = 20, + [64578] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141454,15 +141949,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2572), 1, + ACTIONS(2560), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141470,13 +141965,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1852), 5, + STATE(1848), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [64184] = 20, + [64645] = 20, ACTIONS(3), 1, sym_line_comment, ACTIONS(7), 1, @@ -141501,15 +141996,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_IDENTIFIER_token1, ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2576), 1, + ACTIONS(2568), 1, anon_sym_RBRACE, - STATE(1867), 1, + STATE(1877), 1, sym_IDENTIFIER, - STATE(1881), 1, + STATE(1887), 1, sym_ContainerField, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -141517,169 +142012,55 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1840), 5, + STATE(1855), 5, aux_sym__ContainerMembers, sym__ContainerDeclarations, sym_TestDecl, sym_TopLevelComptime, sym_TopLevelDecl, - [64251] = 20, + [64712] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(7), 1, - anon_sym_pub, - ACTIONS(9), 1, - anon_sym_test, - ACTIONS(11), 1, - anon_sym_comptime, - ACTIONS(13), 1, - anon_sym_export, - ACTIONS(15), 1, - anon_sym_extern, - ACTIONS(19), 1, - anon_sym_threadlocal, - ACTIONS(21), 1, - anon_sym_usingnamespace, - ACTIONS(23), 1, - anon_sym_fn, - ACTIONS(29), 1, + ACTIONS(2572), 1, + anon_sym_BANG, + ACTIONS(1529), 6, + ts_builtin_sym_end, + anon_sym_COMMA, + anon_sym_EQ, + anon_sym_RBRACE, sym_doc_comment, - ACTIONS(31), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, anon_sym_AT, - ACTIONS(2576), 1, - anon_sym_RBRACE, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(17), 2, - anon_sym_inline, - anon_sym_noinline, - ACTIONS(25), 2, - anon_sym_const, - anon_sym_var, - STATE(1765), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [64318] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, + ACTIONS(1531), 14, anon_sym_pub, - ACTIONS(9), 1, anon_sym_test, - ACTIONS(11), 1, anon_sym_comptime, - ACTIONS(13), 1, anon_sym_export, - ACTIONS(15), 1, anon_sym_extern, - ACTIONS(19), 1, - anon_sym_threadlocal, - ACTIONS(21), 1, - anon_sym_usingnamespace, - ACTIONS(23), 1, - anon_sym_fn, - ACTIONS(29), 1, - sym_doc_comment, - ACTIONS(31), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, - anon_sym_AT, - ACTIONS(2578), 1, - ts_builtin_sym_end, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(17), 2, anon_sym_inline, anon_sym_noinline, - ACTIONS(25), 2, - anon_sym_const, - anon_sym_var, - STATE(1765), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [64385] = 20, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(7), 1, - anon_sym_pub, - ACTIONS(9), 1, - anon_sym_test, - ACTIONS(11), 1, - anon_sym_comptime, - ACTIONS(13), 1, - anon_sym_export, - ACTIONS(15), 1, - anon_sym_extern, - ACTIONS(19), 1, anon_sym_threadlocal, - ACTIONS(21), 1, anon_sym_usingnamespace, - ACTIONS(23), 1, anon_sym_fn, - ACTIONS(29), 1, - sym_doc_comment, - ACTIONS(31), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(33), 1, - anon_sym_AT, - ACTIONS(2560), 1, - anon_sym_RBRACE, - STATE(1867), 1, - sym_IDENTIFIER, - STATE(1881), 1, - sym_ContainerField, - STATE(1895), 1, - sym_VarDecl, - STATE(2111), 1, - sym_FnProto, - ACTIONS(17), 2, - anon_sym_inline, - anon_sym_noinline, - ACTIONS(25), 2, anon_sym_const, anon_sym_var, - STATE(1765), 5, - aux_sym__ContainerMembers, - sym__ContainerDeclarations, - sym_TestDecl, - sym_TopLevelComptime, - sym_TopLevelDecl, - [64452] = 6, + anon_sym_align, + aux_sym_IDENTIFIER_token1, + [64743] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2580), 1, + ACTIONS(2574), 1, anon_sym_EQ, - ACTIONS(2582), 1, + ACTIONS(2576), 1, anon_sym_align, - STATE(1875), 1, + STATE(1883), 1, sym_ByteAlign, - ACTIONS(1983), 5, + ACTIONS(1961), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1985), 13, + ACTIONS(1963), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141693,19 +142074,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64487] = 4, + [64778] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2584), 1, - anon_sym_BANG, - ACTIONS(1371), 6, + ACTIONS(2576), 1, + anon_sym_align, + ACTIONS(2578), 1, + anon_sym_EQ, + STATE(1880), 1, + sym_ByteAlign, + ACTIONS(1953), 5, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1373), 14, + ACTIONS(1955), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141718,24 +142102,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_const, anon_sym_var, - anon_sym_align, aux_sym_IDENTIFIER_token1, - [64518] = 6, + [64813] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, + ACTIONS(2576), 1, anon_sym_align, - ACTIONS(2586), 1, + ACTIONS(2580), 1, anon_sym_EQ, - STATE(1876), 1, + STATE(1881), 1, sym_ByteAlign, - ACTIONS(1963), 5, + ACTIONS(1973), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1965), 13, + ACTIONS(1975), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141749,22 +142132,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64553] = 6, + [64848] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2582), 1, - anon_sym_align, - ACTIONS(2588), 1, - anon_sym_EQ, - STATE(1877), 1, - sym_ByteAlign, - ACTIONS(1979), 5, + ACTIONS(2586), 1, + anon_sym_DQUOTE, + STATE(1884), 1, + sym_STRINGLITERALSINGLE, + STATE(1909), 1, + sym_VarDecl, + ACTIONS(2582), 4, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1981), 13, + ACTIONS(2584), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141778,10 +142160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64588] = 3, + [64882] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(526), 7, + ACTIONS(562), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_COLON, @@ -141789,7 +142171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(528), 13, + ACTIONS(564), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141803,20 +142185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64616] = 5, + [64910] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2594), 1, - anon_sym_COLON, - ACTIONS(2596), 1, - anon_sym_EQ, - ACTIONS(2590), 5, + ACTIONS(526), 7, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2592), 13, + ACTIONS(528), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141830,20 +142210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64648] = 5, + [64938] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2602), 1, + ACTIONS(2592), 1, anon_sym_COLON, - ACTIONS(2604), 1, + ACTIONS(2594), 1, anon_sym_EQ, - ACTIONS(2598), 5, + ACTIONS(2588), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2600), 13, + ACTIONS(2590), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141857,21 +142237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64680] = 6, + [64970] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - STATE(1880), 1, - sym_STRINGLITERALSINGLE, - STATE(1884), 1, - sym_VarDecl, - ACTIONS(2606), 4, + ACTIONS(2594), 1, + anon_sym_EQ, + ACTIONS(2596), 1, + anon_sym_COLON, + ACTIONS(2588), 5, ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2608), 13, + ACTIONS(2590), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141885,10 +142264,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64714] = 3, + [65002] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(566), 7, + ACTIONS(522), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_COLON, @@ -141896,7 +142275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(568), 13, + ACTIONS(524), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141910,20 +142289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64742] = 5, + [65030] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2616), 1, + ACTIONS(2602), 1, anon_sym_COLON, - ACTIONS(2618), 1, + ACTIONS(2604), 1, anon_sym_EQ, - ACTIONS(2612), 5, + ACTIONS(2598), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2614), 13, + ACTIONS(2600), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141937,10 +142316,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64774] = 3, + [65062] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(538), 7, + ACTIONS(558), 7, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_COLON, @@ -141948,7 +142327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(540), 13, + ACTIONS(560), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141962,18 +142341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64802] = 3, + [65090] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(570), 7, - ts_builtin_sym_end, - anon_sym_COMMA, + ACTIONS(2610), 1, anon_sym_COLON, + ACTIONS(2612), 1, anon_sym_EQ, + ACTIONS(2606), 5, + ts_builtin_sym_end, + anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(572), 13, + ACTIONS(2608), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -141987,20 +142368,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64830] = 5, + [65122] = 4, ACTIONS(3), 1, sym_line_comment, ACTIONS(2618), 1, anon_sym_EQ, - ACTIONS(2620), 1, - anon_sym_COLON, - ACTIONS(2612), 5, + ACTIONS(2614), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2614), 13, + ACTIONS(2616), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142014,17 +142393,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64862] = 3, + [65151] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2072), 6, + ACTIONS(2624), 1, + anon_sym_EQ, + ACTIONS(2620), 5, ts_builtin_sym_end, anon_sym_COMMA, - anon_sym_EQ, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2070), 13, + ACTIONS(2622), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142038,18 +142418,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64889] = 4, + [65180] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2626), 1, - anon_sym_EQ, - ACTIONS(2622), 5, + ACTIONS(2029), 6, ts_builtin_sym_end, anon_sym_COMMA, + anon_sym_EQ, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2624), 13, + ACTIONS(2027), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142063,18 +142442,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64918] = 4, + [65207] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2632), 1, + ACTIONS(2630), 1, anon_sym_EQ, - ACTIONS(2628), 5, + ACTIONS(2626), 5, ts_builtin_sym_end, anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2630), 13, + ACTIONS(2628), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142088,18 +142467,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64947] = 4, + [65236] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2638), 1, - anon_sym_EQ, - ACTIONS(2634), 5, + STATE(1896), 1, + sym_VarDecl, + ACTIONS(2632), 4, ts_builtin_sym_end, - anon_sym_COMMA, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2636), 13, + ACTIONS(2634), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142113,7 +142491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [64976] = 17, + [65264] = 17, ACTIONS(13), 1, anon_sym_export, ACTIONS(15), 1, @@ -142130,19 +142508,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2640), 1, + ACTIONS(2636), 1, anon_sym_pub, - ACTIONS(2642), 1, + ACTIONS(2638), 1, anon_sym_test, - ACTIONS(2644), 1, + ACTIONS(2640), 1, anon_sym_comptime, - STATE(1873), 1, + STATE(1875), 1, sym_IDENTIFIER, - STATE(1893), 1, - sym_TopLevelDecl, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(1903), 1, + sym_TopLevelDecl, + STATE(2113), 1, sym_FnProto, ACTIONS(17), 2, anon_sym_inline, @@ -142150,41 +142528,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(25), 2, anon_sym_const, anon_sym_var, - [65030] = 4, - ACTIONS(3), 1, - sym_line_comment, - STATE(1884), 1, - sym_VarDecl, - ACTIONS(2606), 4, - ts_builtin_sym_end, - anon_sym_RBRACE, - sym_doc_comment, - anon_sym_AT, - ACTIONS(2608), 13, - anon_sym_pub, - anon_sym_test, - anon_sym_comptime, - anon_sym_export, - anon_sym_extern, - anon_sym_inline, - anon_sym_noinline, - anon_sym_threadlocal, - anon_sym_usingnamespace, - anon_sym_fn, - anon_sym_const, - anon_sym_var, - aux_sym_IDENTIFIER_token1, - [65058] = 4, + [65318] = 4, ACTIONS(3), 1, sym_line_comment, - STATE(1898), 1, + STATE(1909), 1, sym_VarDecl, - ACTIONS(2646), 4, + ACTIONS(2582), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2648), 13, + ACTIONS(2584), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142198,17 +142552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65086] = 4, + [65346] = 4, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2652), 1, + ACTIONS(2644), 1, anon_sym_COMMA, - ACTIONS(2650), 4, + ACTIONS(2642), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2654), 13, + ACTIONS(2646), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142222,15 +142576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65114] = 3, + [65374] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(512), 4, + ACTIONS(2648), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(510), 13, + ACTIONS(2650), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142244,15 +142598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65139] = 3, + [65399] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(520), 4, + ACTIONS(1667), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(514), 13, + ACTIONS(1665), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142266,15 +142620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65164] = 3, + [65424] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2646), 4, + ACTIONS(1731), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2648), 13, + ACTIONS(1729), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142288,15 +142642,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65189] = 3, + [65449] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2487), 4, + ACTIONS(1683), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2656), 13, + ACTIONS(1681), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142310,15 +142664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65214] = 3, + [65474] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(508), 4, + ACTIONS(2495), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(506), 13, + ACTIONS(2652), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142332,15 +142686,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65239] = 3, + [65499] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1669), 4, + ACTIONS(508), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1667), 13, + ACTIONS(506), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142354,15 +142708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65264] = 3, + [65524] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2658), 4, + ACTIONS(512), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2660), 13, + ACTIONS(510), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142376,15 +142730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65289] = 3, + [65549] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1705), 4, + ACTIONS(2582), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1703), 13, + ACTIONS(2584), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142398,15 +142752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65314] = 3, + [65574] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1721), 4, + ACTIONS(2654), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1719), 13, + ACTIONS(2656), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142420,15 +142774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65339] = 3, + [65599] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1725), 4, + ACTIONS(2658), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1723), 13, + ACTIONS(2660), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142442,15 +142796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65364] = 3, + [65624] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2662), 4, + ACTIONS(1735), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2664), 13, + ACTIONS(1733), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142464,15 +142818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65389] = 3, + [65649] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2666), 4, + ACTIONS(2662), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2668), 13, + ACTIONS(2664), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142486,15 +142840,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65414] = 3, + [65674] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1733), 4, + ACTIONS(2666), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1731), 13, + ACTIONS(2668), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142508,15 +142862,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65439] = 3, + [65699] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2606), 4, + ACTIONS(1703), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2608), 13, + ACTIONS(1701), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142530,15 +142884,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65464] = 3, + [65724] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1701), 4, + ACTIONS(2670), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1699), 13, + ACTIONS(2672), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142552,15 +142906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65489] = 3, + [65749] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2670), 4, + ACTIONS(2674), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2672), 13, + ACTIONS(2676), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142574,15 +142928,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65514] = 3, + [65774] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2674), 4, + ACTIONS(520), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2676), 13, + ACTIONS(514), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142596,15 +142950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65539] = 3, + [65799] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2678), 4, + ACTIONS(1687), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2680), 13, + ACTIONS(1685), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142618,15 +142972,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65564] = 3, + [65824] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(598), 4, + ACTIONS(2678), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(596), 13, + ACTIONS(2680), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142640,7 +142994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65589] = 3, + [65849] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(2682), 4, @@ -142662,15 +143016,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65614] = 3, + [65874] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2686), 4, + ACTIONS(618), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2688), 13, + ACTIONS(616), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142684,15 +143038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65639] = 3, + [65899] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(1677), 4, + ACTIONS(2632), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(1675), 13, + ACTIONS(2634), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142706,15 +143060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65664] = 3, + [65924] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2690), 4, + ACTIONS(1675), 4, ts_builtin_sym_end, anon_sym_RBRACE, sym_doc_comment, anon_sym_AT, - ACTIONS(2692), 13, + ACTIONS(1673), 13, anon_sym_pub, anon_sym_test, anon_sym_comptime, @@ -142728,48 +143082,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym_var, aux_sym_IDENTIFIER_token1, - [65689] = 14, + [65949] = 14, ACTIONS(95), 1, sym_line_comment, ACTIONS(335), 1, anon_sym_LBRACE, - ACTIONS(2694), 1, + ACTIONS(2686), 1, anon_sym_inline, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(61), 1, + STATE(59), 1, sym_Block, - STATE(111), 1, + STATE(119), 1, sym_WhilePrefix, - STATE(112), 1, + STATE(120), 1, sym_ForPrefix, - STATE(775), 1, + STATE(821), 1, sym_LoopTypeExpr, - STATE(901), 1, + STATE(877), 1, sym_LoopStatement, - STATE(1015), 1, + STATE(1018), 1, sym_LoopExpr, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(890), 2, + STATE(897), 2, sym_ForStatement, sym_WhileStatement, - STATE(1013), 2, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [65735] = 12, + [65995] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(674), 1, + ACTIONS(700), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2700), 1, + ACTIONS(2692), 1, anon_sym_inline, STATE(49), 1, sym_Block, @@ -142777,6455 +143131,6496 @@ static const uint16_t ts_small_parse_table[] = { sym_WhilePrefix, STATE(273), 1, sym_ForPrefix, - STATE(775), 1, + STATE(821), 1, sym_LoopTypeExpr, - STATE(1015), 1, + STATE(1018), 1, sym_LoopExpr, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [65774] = 11, + [66034] = 11, ACTIONS(95), 1, sym_line_comment, - ACTIONS(143), 1, + ACTIONS(235), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2702), 1, + ACTIONS(2694), 1, anon_sym_inline, - STATE(322), 1, + STATE(234), 1, sym_WhilePrefix, - STATE(323), 1, - sym_ForPrefix, - STATE(1252), 1, - sym_LoopExpr, - STATE(1039), 2, - sym_Block, - sym_LoopTypeExpr, - STATE(1074), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - STATE(1249), 2, - sym_ForExpr, - sym_WhileExpr, - [65811] = 11, - ACTIONS(59), 1, - anon_sym_LBRACE, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2696), 1, - anon_sym_while, - ACTIONS(2698), 1, - anon_sym_for, - ACTIONS(2704), 1, - anon_sym_inline, - STATE(218), 1, + STATE(247), 1, sym_ForPrefix, - STATE(221), 1, - sym_WhilePrefix, - STATE(1015), 1, + STATE(1614), 1, sym_LoopExpr, - STATE(775), 2, + STATE(1374), 2, sym_Block, sym_LoopTypeExpr, - STATE(801), 2, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(1616), 2, sym_ForExpr, sym_WhileExpr, - [65848] = 10, + [66071] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, ACTIONS(1202), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2696), 1, anon_sym_COLON, - STATE(731), 1, + STATE(744), 1, sym_FnCallArguments, STATE(753), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(723), 2, + STATE(745), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 3, + ACTIONS(1218), 3, anon_sym_COMMA, anon_sym_BANG, anon_sym_RPAREN, - [65883] = 11, - ACTIONS(59), 1, - anon_sym_LBRACE, + [66106] = 11, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(185), 1, + anon_sym_LBRACE, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2708), 1, + ACTIONS(2698), 1, anon_sym_inline, - STATE(317), 1, + STATE(229), 1, sym_WhilePrefix, - STATE(318), 1, + STATE(233), 1, sym_ForPrefix, - STATE(1015), 1, + STATE(1262), 1, sym_LoopExpr, - STATE(775), 2, - sym_Block, - sym_LoopTypeExpr, - STATE(801), 2, + STATE(1130), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(1159), 2, + sym_Block, + sym_LoopTypeExpr, + STATE(1269), 2, sym_ForExpr, sym_WhileExpr, - [65920] = 11, + [66143] = 11, ACTIONS(59), 1, anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, ACTIONS(2700), 1, anon_sym_inline, - STATE(272), 1, + STATE(314), 1, sym_WhilePrefix, - STATE(273), 1, + STATE(318), 1, sym_ForPrefix, - STATE(1015), 1, + STATE(1018), 1, sym_LoopExpr, - STATE(775), 2, - sym_Block, - sym_LoopTypeExpr, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [65957] = 10, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, - ACTIONS(1202), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_LBRACK, - ACTIONS(2710), 1, - anon_sym_COLON, - STATE(749), 1, - sym_FnCallArguments, - STATE(754), 1, - sym_SuffixOp, - ACTIONS(1206), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(743), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 3, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_RPAREN, - [65992] = 11, + [66180] = 12, ACTIONS(95), 1, sym_line_comment, - ACTIONS(235), 1, + ACTIONS(335), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2712), 1, + ACTIONS(2702), 1, anon_sym_inline, - STATE(289), 1, + STATE(62), 1, + sym_Block, + STATE(177), 1, sym_ForPrefix, - STATE(290), 1, + STATE(191), 1, sym_WhilePrefix, - STATE(1610), 1, - sym_LoopExpr, - STATE(1367), 2, - sym_Block, + STATE(821), 1, sym_LoopTypeExpr, - STATE(1385), 2, + STATE(1018), 1, + sym_LoopExpr, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1613), 2, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [66029] = 10, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, - ACTIONS(1202), 1, - anon_sym_LPAREN, - ACTIONS(1204), 1, - anon_sym_LBRACK, - ACTIONS(2714), 1, - anon_sym_COLON, - STATE(731), 1, - sym_FnCallArguments, - STATE(753), 1, - sym_SuffixOp, - ACTIONS(1206), 2, - anon_sym_DOT_STAR, - anon_sym_DOT_QMARK, - STATE(723), 2, - sym_FieldOrFnCall, - aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 3, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_RPAREN, - [66064] = 11, + [66219] = 11, + ACTIONS(59), 1, + anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(235), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2716), 1, + ACTIONS(2704), 1, anon_sym_inline, - STATE(243), 1, - sym_WhilePrefix, - STATE(255), 1, + STATE(188), 1, sym_ForPrefix, - STATE(1610), 1, + STATE(189), 1, + sym_WhilePrefix, + STATE(1018), 1, sym_LoopExpr, - STATE(1367), 2, + STATE(801), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + STATE(821), 2, sym_Block, sym_LoopTypeExpr, - STATE(1385), 2, + STATE(988), 2, + sym_ForExpr, + sym_WhileExpr, + [66256] = 11, + ACTIONS(59), 1, + anon_sym_LBRACE, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2688), 1, + anon_sym_while, + ACTIONS(2690), 1, + anon_sym_for, + ACTIONS(2702), 1, + anon_sym_inline, + STATE(177), 1, + sym_ForPrefix, + STATE(191), 1, + sym_WhilePrefix, + STATE(1018), 1, + sym_LoopExpr, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1613), 2, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [66101] = 11, + [66293] = 11, ACTIONS(95), 1, sym_line_comment, - ACTIONS(185), 1, + ACTIONS(143), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2718), 1, + ACTIONS(2706), 1, anon_sym_inline, - STATE(256), 1, + STATE(322), 1, sym_WhilePrefix, - STATE(257), 1, + STATE(323), 1, sym_ForPrefix, - STATE(1266), 1, + STATE(1258), 1, sym_LoopExpr, - STATE(1198), 2, + STATE(1105), 2, sym_Block, sym_LoopTypeExpr, - STATE(1200), 2, + STATE(1112), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1268), 2, + STATE(1250), 2, sym_ForExpr, sym_WhileExpr, - [66138] = 10, + [66330] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, ACTIONS(1202), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, anon_sym_LBRACK, - ACTIONS(2714), 1, + ACTIONS(2696), 1, anon_sym_COLON, - STATE(749), 1, + STATE(725), 1, sym_FnCallArguments, - STATE(754), 1, + STATE(751), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(743), 2, + STATE(727), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 3, + ACTIONS(1218), 3, anon_sym_COMMA, anon_sym_BANG, anon_sym_RPAREN, - [66173] = 12, + [66365] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(335), 1, + ACTIONS(1202), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, + anon_sym_LBRACK, + ACTIONS(2708), 1, + anon_sym_COLON, + STATE(744), 1, + sym_FnCallArguments, + STATE(753), 1, + sym_SuffixOp, + ACTIONS(1208), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(745), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 3, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_RPAREN, + [66400] = 11, + ACTIONS(59), 1, anon_sym_LBRACE, - ACTIONS(2696), 1, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2704), 1, + ACTIONS(2692), 1, anon_sym_inline, - STATE(52), 1, - sym_Block, - STATE(218), 1, - sym_ForPrefix, - STATE(221), 1, + STATE(272), 1, sym_WhilePrefix, - STATE(775), 1, - sym_LoopTypeExpr, - STATE(1015), 1, + STATE(273), 1, + sym_ForPrefix, + STATE(1018), 1, sym_LoopExpr, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + STATE(988), 2, sym_ForExpr, sym_WhileExpr, - [66212] = 11, - ACTIONS(59), 1, - anon_sym_LBRACE, + [66437] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(1202), 1, + anon_sym_DOT, + ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, + anon_sym_LBRACK, + ACTIONS(2708), 1, + anon_sym_COLON, + STATE(725), 1, + sym_FnCallArguments, + STATE(751), 1, + sym_SuffixOp, + ACTIONS(1208), 2, + anon_sym_DOT_STAR, + anon_sym_DOT_QMARK, + STATE(727), 2, + sym_FieldOrFnCall, + aux_sym_SuffixExpr_repeat1, + ACTIONS(1218), 3, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_RPAREN, + [66472] = 11, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(235), 1, + anon_sym_LBRACE, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - ACTIONS(2720), 1, + ACTIONS(2710), 1, anon_sym_inline, - STATE(186), 1, + STATE(289), 1, sym_ForPrefix, - STATE(187), 1, + STATE(291), 1, sym_WhilePrefix, - STATE(1015), 1, + STATE(1614), 1, sym_LoopExpr, - STATE(775), 2, + STATE(1374), 2, sym_Block, sym_LoopTypeExpr, - STATE(801), 2, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1013), 2, + STATE(1616), 2, sym_ForExpr, sym_WhileExpr, - [66249] = 10, + [66509] = 10, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1200), 1, - anon_sym_DOT, ACTIONS(1202), 1, - anon_sym_LPAREN, + anon_sym_DOT, ACTIONS(1204), 1, + anon_sym_LPAREN, + ACTIONS(1206), 1, anon_sym_LBRACK, - ACTIONS(2706), 1, + ACTIONS(2712), 1, anon_sym_COLON, - STATE(749), 1, + STATE(744), 1, sym_FnCallArguments, - STATE(754), 1, + STATE(753), 1, sym_SuffixOp, - ACTIONS(1206), 2, + ACTIONS(1208), 2, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - STATE(743), 2, + STATE(745), 2, sym_FieldOrFnCall, aux_sym_SuffixExpr_repeat1, - ACTIONS(1208), 3, + ACTIONS(1218), 3, anon_sym_COMMA, anon_sym_BANG, anon_sym_RPAREN, - [66284] = 11, + [66544] = 11, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2722), 1, + ACTIONS(2714), 1, anon_sym_export, - ACTIONS(2724), 1, + ACTIONS(2716), 1, anon_sym_extern, - ACTIONS(2728), 1, + ACTIONS(2720), 1, anon_sym_threadlocal, - ACTIONS(2730), 1, + ACTIONS(2722), 1, anon_sym_usingnamespace, - ACTIONS(2732), 1, + ACTIONS(2724), 1, anon_sym_fn, STATE(1895), 1, sym_VarDecl, - STATE(1902), 1, + STATE(1903), 1, sym_TopLevelDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, - ACTIONS(2726), 2, + ACTIONS(2718), 2, anon_sym_inline, anon_sym_noinline, - ACTIONS(2734), 2, + ACTIONS(2726), 2, anon_sym_const, anon_sym_var, - [66320] = 11, + [66580] = 11, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2722), 1, + ACTIONS(2714), 1, anon_sym_export, - ACTIONS(2724), 1, + ACTIONS(2716), 1, anon_sym_extern, - ACTIONS(2728), 1, + ACTIONS(2720), 1, anon_sym_threadlocal, - ACTIONS(2730), 1, + ACTIONS(2722), 1, anon_sym_usingnamespace, - ACTIONS(2732), 1, + ACTIONS(2724), 1, anon_sym_fn, - STATE(1893), 1, + STATE(1888), 1, sym_TopLevelDecl, STATE(1895), 1, sym_VarDecl, - STATE(2111), 1, + STATE(2113), 1, sym_FnProto, - ACTIONS(2726), 2, + ACTIONS(2718), 2, anon_sym_inline, anon_sym_noinline, - ACTIONS(2734), 2, + ACTIONS(2726), 2, anon_sym_const, anon_sym_var, - [66356] = 9, - ACTIONS(59), 1, - anon_sym_LBRACE, + [66616] = 9, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2736), 1, + ACTIONS(2728), 1, anon_sym_inline, - ACTIONS(2738), 1, + ACTIONS(2730), 1, + anon_sym_LBRACE, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(645), 1, - sym_ForPrefix, - STATE(650), 1, + STATE(673), 1, sym_WhilePrefix, - STATE(775), 2, - sym_Block, - sym_LoopTypeExpr, - STATE(801), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [66386] = 9, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - ACTIONS(2742), 1, - anon_sym_inline, - ACTIONS(2744), 1, - anon_sym_LBRACE, - STATE(691), 1, + STATE(674), 1, sym_ForPrefix, - STATE(692), 1, - sym_WhilePrefix, - STATE(1701), 2, + STATE(1776), 2, sym_Block, sym_LoopTypeExpr, - STATE(1735), 2, + STATE(1778), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66416] = 9, + [66646] = 9, ACTIONS(59), 1, anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2746), 1, + ACTIONS(2736), 1, anon_sym_inline, - STATE(561), 1, - sym_ForPrefix, - STATE(562), 1, + STATE(568), 1, sym_WhilePrefix, - STATE(775), 2, - sym_Block, - sym_LoopTypeExpr, + STATE(576), 1, + sym_ForPrefix, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66446] = 9, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + [66676] = 9, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2748), 1, + ACTIONS(2738), 1, anon_sym_inline, - ACTIONS(2750), 1, + ACTIONS(2740), 1, anon_sym_LBRACE, - STATE(671), 1, - sym_WhilePrefix, - STATE(672), 1, + STATE(548), 1, sym_ForPrefix, - STATE(1778), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - STATE(1790), 2, + STATE(667), 1, + sym_WhilePrefix, + STATE(1690), 2, sym_Block, sym_LoopTypeExpr, - [66476] = 9, + STATE(1715), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [66706] = 9, ACTIONS(95), 1, sym_line_comment, - ACTIONS(143), 1, + ACTIONS(235), 1, anon_sym_LBRACE, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2752), 1, + ACTIONS(2742), 1, anon_sym_inline, - STATE(567), 1, + STATE(614), 1, sym_WhilePrefix, - STATE(568), 1, + STATE(616), 1, sym_ForPrefix, - STATE(1039), 2, + STATE(1374), 2, sym_Block, sym_LoopTypeExpr, - STATE(1074), 2, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66506] = 9, + [66736] = 9, ACTIONS(95), 1, sym_line_comment, ACTIONS(185), 1, anon_sym_LBRACE, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2754), 1, + ACTIONS(2744), 1, anon_sym_inline, - STATE(575), 1, + STATE(615), 1, sym_ForPrefix, - STATE(582), 1, + STATE(617), 1, sym_WhilePrefix, - STATE(1198), 2, + STATE(1130), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + STATE(1159), 2, sym_Block, sym_LoopTypeExpr, - STATE(1200), 2, + [66766] = 8, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2688), 1, + anon_sym_while, + ACTIONS(2690), 1, + anon_sym_for, + STATE(119), 1, + sym_WhilePrefix, + STATE(120), 1, + sym_ForPrefix, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66536] = 9, + STATE(871), 2, + sym_ForStatement, + sym_WhileStatement, + STATE(1015), 2, + sym_ForExpr, + sym_WhileExpr, + [66794] = 9, ACTIONS(59), 1, anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2756), 1, + ACTIONS(2746), 1, anon_sym_inline, - STATE(674), 1, + STATE(693), 1, sym_WhilePrefix, - STATE(677), 1, + STATE(695), 1, sym_ForPrefix, - STATE(775), 2, - sym_Block, - sym_LoopTypeExpr, STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66566] = 9, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + [66824] = 9, + ACTIONS(59), 1, + anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(235), 1, - anon_sym_LBRACE, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2758), 1, + ACTIONS(2748), 1, anon_sym_inline, - STATE(635), 1, - sym_WhilePrefix, - STATE(636), 1, + STATE(577), 1, sym_ForPrefix, - STATE(1367), 2, - sym_Block, - sym_LoopTypeExpr, - STATE(1385), 2, + STATE(578), 1, + sym_WhilePrefix, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66596] = 9, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + [66854] = 9, + ACTIONS(59), 1, + anon_sym_LBRACE, ACTIONS(95), 1, sym_line_comment, - ACTIONS(235), 1, - anon_sym_LBRACE, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2760), 1, + ACTIONS(2750), 1, anon_sym_inline, - STATE(614), 1, - sym_WhilePrefix, - STATE(616), 1, + STATE(558), 1, sym_ForPrefix, - STATE(1367), 2, - sym_Block, - sym_LoopTypeExpr, - STATE(1385), 2, + STATE(591), 1, + sym_WhilePrefix, + STATE(801), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66626] = 8, + STATE(821), 2, + sym_Block, + sym_LoopTypeExpr, + [66884] = 9, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(143), 1, + anon_sym_LBRACE, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(111), 1, + ACTIONS(2752), 1, + anon_sym_inline, + STATE(569), 1, sym_WhilePrefix, - STATE(112), 1, + STATE(571), 1, sym_ForPrefix, - STATE(804), 2, + STATE(1105), 2, + sym_Block, + sym_LoopTypeExpr, + STATE(1112), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(902), 2, - sym_ForStatement, - sym_WhileStatement, - STATE(1012), 2, - sym_ForExpr, - sym_WhileExpr, - [66654] = 9, - ACTIONS(59), 1, - anon_sym_LBRACE, + [66914] = 9, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(235), 1, + anon_sym_LBRACE, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - ACTIONS(2762), 1, + ACTIONS(2754), 1, anon_sym_inline, - STATE(576), 1, - sym_ForPrefix, - STATE(577), 1, + STATE(635), 1, sym_WhilePrefix, - STATE(775), 2, + STATE(636), 1, + sym_ForPrefix, + STATE(1374), 2, sym_Block, sym_LoopTypeExpr, - STATE(801), 2, + STATE(1381), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [66684] = 7, + [66944] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(289), 1, - sym_ForPrefix, - STATE(290), 1, + STATE(234), 1, sym_WhilePrefix, - STATE(1377), 2, + STATE(247), 1, + sym_ForPrefix, + STATE(1365), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1611), 2, + STATE(1615), 2, sym_ForExpr, sym_WhileExpr, - [66708] = 7, + [66968] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(256), 1, + STATE(314), 1, sym_WhilePrefix, - STATE(257), 1, + STATE(318), 1, sym_ForPrefix, - STATE(1152), 2, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1260), 2, + STATE(1015), 2, sym_ForExpr, sym_WhileExpr, - [66732] = 7, + [66992] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(317), 1, - sym_WhilePrefix, - STATE(318), 1, + STATE(289), 1, sym_ForPrefix, - STATE(804), 2, + STATE(291), 1, + sym_WhilePrefix, + STATE(1365), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1012), 2, + STATE(1615), 2, sym_ForExpr, sym_WhileExpr, - [66756] = 4, + [67016] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1431), 1, + ACTIONS(1465), 1, anon_sym_DOT, - ACTIONS(2764), 2, + ACTIONS(2756), 2, anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(1429), 5, + ACTIONS(1463), 5, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT_STAR, anon_sym_DOT_QMARK, - [66774] = 7, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2696), 1, - anon_sym_while, - ACTIONS(2698), 1, - anon_sym_for, - STATE(186), 1, - sym_ForPrefix, - STATE(187), 1, - sym_WhilePrefix, - STATE(804), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - STATE(1012), 2, - sym_ForExpr, - sym_WhileExpr, - [66798] = 7, + [67034] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(218), 1, - sym_ForPrefix, - STATE(221), 1, + STATE(229), 1, sym_WhilePrefix, - STATE(804), 2, + STATE(233), 1, + sym_ForPrefix, + STATE(1149), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1012), 2, + STATE(1272), 2, sym_ForExpr, sym_WhileExpr, - [66822] = 7, + [67058] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, - STATE(243), 1, - sym_WhilePrefix, - STATE(255), 1, + STATE(188), 1, sym_ForPrefix, - STATE(1377), 2, + STATE(189), 1, + sym_WhilePrefix, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1611), 2, + STATE(1015), 2, sym_ForExpr, sym_WhileExpr, - [66846] = 7, + [67082] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, STATE(272), 1, sym_WhilePrefix, STATE(273), 1, sym_ForPrefix, - STATE(804), 2, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1012), 2, + STATE(1015), 2, sym_ForExpr, sym_WhileExpr, - [66870] = 7, + [67106] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2696), 1, + ACTIONS(2688), 1, anon_sym_while, - ACTIONS(2698), 1, + ACTIONS(2690), 1, anon_sym_for, STATE(322), 1, sym_WhilePrefix, STATE(323), 1, sym_ForPrefix, - STATE(1064), 2, + STATE(1109), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - STATE(1248), 2, + STATE(1260), 2, sym_ForExpr, sym_WhileExpr, - [66894] = 6, + [67130] = 7, ACTIONS(95), 1, sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(2766), 1, - anon_sym_RPAREN, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2211), 3, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [66915] = 8, + ACTIONS(2688), 1, + anon_sym_while, + ACTIONS(2690), 1, + anon_sym_for, + STATE(177), 1, + sym_ForPrefix, + STATE(191), 1, + sym_WhilePrefix, + STATE(779), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + STATE(1015), 2, + sym_ForExpr, + sym_WhileExpr, + [67154] = 8, ACTIONS(33), 1, anon_sym_AT, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, + ACTIONS(2758), 1, anon_sym_LBRACE, - ACTIONS(2770), 1, + ACTIONS(2760), 1, aux_sym_IDENTIFIER_token1, - STATE(1870), 1, + STATE(1874), 1, sym_IDENTIFIER, - STATE(1900), 1, - sym_Block, - STATE(1901), 1, + STATE(1902), 1, sym_BlockExpr, - STATE(2286), 1, + STATE(1908), 1, + sym_Block, + STATE(2292), 1, sym_BlockLabel, - [66940] = 6, + [67179] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(2772), 1, - anon_sym_RPAREN, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2228), 3, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [66961] = 6, + ACTIONS(2762), 1, + anon_sym_SEMI, + ACTIONS(2764), 1, + anon_sym_COLON, + ACTIONS(2766), 1, + anon_sym_EQ, + ACTIONS(2768), 1, + anon_sym_linksection, + ACTIONS(2770), 1, + anon_sym_align, + STATE(2079), 1, + sym_ByteAlign, + STATE(2305), 1, + sym_LinkSection, + [67204] = 6, ACTIONS(95), 1, sym_line_comment, ACTIONS(105), 1, anon_sym_DQUOTE, ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - ACTIONS(2774), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(2772), 1, anon_sym_RPAREN, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2228), 3, - sym_STRINGLITERALSINGLE, + STATE(728), 2, sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2251), 2, + sym_STRINGLITERALSINGLE, sym__STRINGLITERAL, - [66982] = 8, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2776), 1, - anon_sym_SEMI, - ACTIONS(2778), 1, - anon_sym_COLON, - ACTIONS(2780), 1, - anon_sym_EQ, - ACTIONS(2782), 1, - anon_sym_linksection, - ACTIONS(2784), 1, - anon_sym_align, - STATE(2069), 1, - sym_ByteAlign, - STATE(2289), 1, - sym_LinkSection, - [67007] = 8, + [67225] = 8, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2782), 1, + ACTIONS(2768), 1, anon_sym_linksection, - ACTIONS(2784), 1, + ACTIONS(2770), 1, anon_sym_align, - ACTIONS(2786), 1, + ACTIONS(2774), 1, anon_sym_SEMI, - ACTIONS(2788), 1, + ACTIONS(2776), 1, anon_sym_COLON, - ACTIONS(2790), 1, + ACTIONS(2778), 1, anon_sym_EQ, - STATE(2061), 1, + STATE(2067), 1, sym_ByteAlign, - STATE(2288), 1, + STATE(2280), 1, sym_LinkSection, - [67032] = 8, + [67250] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(2780), 1, + anon_sym_RPAREN, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2251), 2, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [67271] = 8, ACTIONS(33), 1, anon_sym_AT, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, + ACTIONS(2758), 1, anon_sym_LBRACE, - ACTIONS(2770), 1, + ACTIONS(2760), 1, aux_sym_IDENTIFIER_token1, - STATE(1866), 1, + STATE(1879), 1, sym_IDENTIFIER, - STATE(1888), 1, - sym_BlockExpr, STATE(1900), 1, + sym_BlockExpr, + STATE(1908), 1, sym_Block, - STATE(2286), 1, + STATE(2292), 1, sym_BlockLabel, - [67057] = 5, + [67296] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + ACTIONS(2782), 1, + anon_sym_RPAREN, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2161), 2, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [67317] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2794), 1, + ACTIONS(2786), 1, anon_sym_DQUOTE, - ACTIONS(2796), 1, + ACTIONS(2788), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1997), 1, + STATE(1986), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2784), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67075] = 5, + [67335] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2403), 2, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [67353] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2732), 1, + anon_sym_while, + ACTIONS(2734), 1, + anon_sym_for, + STATE(615), 1, + sym_ForPrefix, + STATE(617), 1, + sym_WhilePrefix, + STATE(1149), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [67373] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2251), 2, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [67391] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2800), 1, + ACTIONS(2793), 1, anon_sym_DQUOTE, - ACTIONS(2802), 1, + ACTIONS(2795), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1957), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2798), 3, + ACTIONS(2790), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67093] = 5, + [67409] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2800), 1, + anon_sym_enum, + ACTIONS(2802), 1, + anon_sym_union, + STATE(777), 1, + sym__ContainerDeclAuto, + STATE(2334), 1, + sym_ContainerDeclType, + ACTIONS(2798), 2, + anon_sym_struct, + anon_sym_opaque, + [67429] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2804), 1, + ACTIONS(2806), 1, anon_sym_DQUOTE, - STATE(1997), 1, + ACTIONS(2808), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67111] = 5, + [67447] = 7, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2317), 1, + anon_sym_SEMI, + ACTIONS(2768), 1, + anon_sym_linksection, + ACTIONS(2770), 1, + anon_sym_align, + ACTIONS(2810), 1, + anon_sym_EQ, + STATE(2069), 1, + sym_ByteAlign, + STATE(2236), 1, + sym_LinkSection, + [67469] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2732), 1, + anon_sym_while, + ACTIONS(2734), 1, + anon_sym_for, + STATE(568), 1, + sym_WhilePrefix, + STATE(576), 1, + sym_ForPrefix, + STATE(779), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [67489] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2732), 1, + anon_sym_while, + ACTIONS(2734), 1, + anon_sym_for, + STATE(569), 1, + sym_WhilePrefix, + STATE(571), 1, + sym_ForPrefix, + STATE(1109), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [67509] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2806), 1, + ACTIONS(2812), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67129] = 5, + [67527] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2810), 1, - anon_sym_DQUOTE, - ACTIONS(2812), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1955), 1, + ACTIONS(2814), 1, + anon_sym_DQUOTE, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2808), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67147] = 5, + [67545] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2814), 1, + ACTIONS(2818), 1, anon_sym_DQUOTE, - STATE(1997), 1, + ACTIONS(2820), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1974), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2816), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67165] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - STATE(567), 1, - sym_WhilePrefix, - STATE(568), 1, - sym_ForPrefix, - STATE(1064), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [67185] = 5, + [67563] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2816), 1, + ACTIONS(2824), 1, anon_sym_DQUOTE, - STATE(1997), 1, + ACTIONS(2826), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1978), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2822), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67203] = 6, + [67581] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - STATE(691), 1, - sym_ForPrefix, - STATE(692), 1, - sym_WhilePrefix, - STATE(1713), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [67223] = 6, + ACTIONS(2800), 1, + anon_sym_enum, + ACTIONS(2802), 1, + anon_sym_union, + STATE(1184), 1, + sym__ContainerDeclAuto, + STATE(2332), 1, + sym_ContainerDeclType, + ACTIONS(2798), 2, + anon_sym_struct, + anon_sym_opaque, + [67601] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2820), 1, + ACTIONS(2800), 1, + anon_sym_enum, + ACTIONS(2802), 1, + anon_sym_union, + STATE(1110), 1, + sym__ContainerDeclAuto, + STATE(2366), 1, + sym_ContainerDeclType, + ACTIONS(2798), 2, + anon_sym_struct, + anon_sym_opaque, + [67621] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2800), 1, anon_sym_enum, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_union, - STATE(1135), 1, + STATE(1713), 1, sym__ContainerDeclAuto, - STATE(2320), 1, + STATE(2351), 1, sym_ContainerDeclType, - ACTIONS(2818), 2, + ACTIONS(2798), 2, anon_sym_struct, anon_sym_opaque, - [67243] = 5, + [67641] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2826), 1, + ACTIONS(2830), 1, anon_sym_DQUOTE, - ACTIONS(2828), 1, + ACTIONS(2832), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1990), 1, + STATE(1967), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2824), 3, + ACTIONS(2828), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67261] = 5, + [67659] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2832), 1, - anon_sym_DQUOTE, - ACTIONS(2834), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1952), 1, + ACTIONS(2834), 1, + anon_sym_DQUOTE, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2830), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67279] = 5, + [67677] = 5, ACTIONS(3), 1, sym_line_comment, ACTIONS(2838), 1, anon_sym_DQUOTE, ACTIONS(2840), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1950), 1, + STATE(1962), 1, aux_sym_STRINGLITERALSINGLE_repeat1, ACTIONS(2836), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67297] = 6, + [67695] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(561), 1, + STATE(548), 1, sym_ForPrefix, - STATE(562), 1, + STATE(667), 1, sym_WhilePrefix, - STATE(804), 2, + STATE(1712), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [67317] = 5, + [67715] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, ACTIONS(2842), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67335] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2820), 1, - anon_sym_enum, - ACTIONS(2822), 1, - anon_sym_union, - STATE(1714), 1, - sym__ContainerDeclAuto, - STATE(2319), 1, - sym_ContainerDeclType, - ACTIONS(2818), 2, - anon_sym_struct, - anon_sym_opaque, - [67355] = 5, + [67733] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2846), 1, - anon_sym_DQUOTE, - ACTIONS(2848), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1964), 1, - aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2844), 3, - sym_EscapeSequence, - sym_FormatSequence, - aux_sym_STRINGLITERALSINGLE_token1, - [67373] = 7, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2389), 1, - anon_sym_SEMI, - ACTIONS(2782), 1, - anon_sym_linksection, - ACTIONS(2784), 1, - anon_sym_align, - ACTIONS(2850), 1, - anon_sym_EQ, - STATE(2072), 1, - sym_ByteAlign, - STATE(2267), 1, - sym_LinkSection, - [67395] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2854), 1, + ACTIONS(2844), 1, anon_sym_DQUOTE, - ACTIONS(2856), 1, - aux_sym_STRINGLITERALSINGLE_token2, - STATE(1995), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2852), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67413] = 5, + [67751] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2860), 1, + ACTIONS(2848), 1, anon_sym_DQUOTE, - ACTIONS(2862), 1, + ACTIONS(2850), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1983), 1, + STATE(1982), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2858), 3, + ACTIONS(2846), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67431] = 6, + [67769] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, STATE(635), 1, sym_WhilePrefix, STATE(636), 1, sym_ForPrefix, - STATE(1377), 2, + STATE(1365), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [67451] = 6, + [67789] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2820), 1, + ACTIONS(2800), 1, anon_sym_enum, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_union, - STATE(1065), 1, + STATE(1807), 1, sym__ContainerDeclAuto, - STATE(2327), 1, + STATE(2377), 1, sym_ContainerDeclType, - ACTIONS(2818), 2, + ACTIONS(2798), 2, anon_sym_struct, anon_sym_opaque, - [67471] = 5, + [67809] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2866), 1, - anon_sym_DQUOTE, - ACTIONS(2868), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1953), 1, + ACTIONS(2852), 1, + anon_sym_DQUOTE, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2864), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67489] = 6, + [67827] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(575), 1, + STATE(577), 1, sym_ForPrefix, - STATE(582), 1, + STATE(578), 1, sym_WhilePrefix, - STATE(1152), 2, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [67509] = 5, + [67847] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2732), 1, + anon_sym_while, + ACTIONS(2734), 1, + anon_sym_for, + STATE(673), 1, + sym_WhilePrefix, + STATE(674), 1, + sym_ForPrefix, + STATE(1828), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [67867] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(107), 1, + anon_sym_BSLASH_BSLASH, + STATE(728), 2, + sym_LINESTRING, + aux_sym__STRINGLITERAL_repeat1, + STATE(2399), 2, + sym_STRINGLITERALSINGLE, + sym__STRINGLITERAL, + [67885] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2870), 1, + ACTIONS(2854), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67527] = 5, + [67903] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2872), 1, + ACTIONS(2858), 1, anon_sym_DQUOTE, - STATE(1997), 1, + ACTIONS(2860), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1990), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2856), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67545] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - STATE(671), 1, - sym_WhilePrefix, - STATE(672), 1, - sym_ForPrefix, - STATE(1822), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [67565] = 5, + [67921] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2876), 1, + ACTIONS(2864), 1, anon_sym_DQUOTE, - ACTIONS(2878), 1, + ACTIONS(2866), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1975), 1, + STATE(1977), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2874), 3, + ACTIONS(2862), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67583] = 5, + [67939] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2882), 1, + ACTIONS(2870), 1, anon_sym_DQUOTE, - ACTIONS(2884), 1, + ACTIONS(2872), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1984), 1, + STATE(2001), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2880), 3, + ACTIONS(2868), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67601] = 6, - ACTIONS(95), 1, + [67957] = 5, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - STATE(576), 1, - sym_ForPrefix, - STATE(577), 1, - sym_WhilePrefix, - STATE(804), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [67621] = 6, + ACTIONS(2808), 1, + aux_sym_STRINGLITERALSINGLE_token2, + ACTIONS(2874), 1, + anon_sym_DQUOTE, + STATE(1960), 1, + aux_sym_STRINGLITERALSINGLE_repeat1, + ACTIONS(2804), 3, + sym_EscapeSequence, + sym_FormatSequence, + aux_sym_STRINGLITERALSINGLE_token1, + [67975] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2820), 1, + ACTIONS(2800), 1, anon_sym_enum, - ACTIONS(2822), 1, + ACTIONS(2802), 1, anon_sym_union, - STATE(1374), 1, + STATE(1435), 1, sym__ContainerDeclAuto, - STATE(2364), 1, + STATE(2376), 1, sym_ContainerDeclType, - ACTIONS(2818), 2, + ACTIONS(2798), 2, anon_sym_struct, anon_sym_opaque, - [67641] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2228), 3, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [67659] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2338), 3, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [67677] = 5, + [67995] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2886), 1, + ACTIONS(2878), 1, anon_sym_DQUOTE, - STATE(1997), 1, - aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, - sym_EscapeSequence, - sym_FormatSequence, - aux_sym_STRINGLITERALSINGLE_token1, - [67695] = 5, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2880), 1, aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2888), 1, - anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1994), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2876), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67713] = 6, + [68013] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(614), 1, - sym_WhilePrefix, - STATE(616), 1, + STATE(558), 1, sym_ForPrefix, - STATE(1377), 2, + STATE(591), 1, + sym_WhilePrefix, + STATE(779), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [67733] = 5, + [68033] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2892), 1, - anon_sym_DQUOTE, - ACTIONS(2894), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1974), 1, + ACTIONS(2882), 1, + anon_sym_DQUOTE, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2890), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67751] = 5, + [68051] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, - aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2896), 1, + ACTIONS(2886), 1, anon_sym_DQUOTE, - STATE(1997), 1, + ACTIONS(2888), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1966), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2884), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67769] = 7, + [68069] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2429), 1, + ACTIONS(2732), 1, + anon_sym_while, + ACTIONS(2734), 1, + anon_sym_for, + STATE(693), 1, + sym_WhilePrefix, + STATE(695), 1, + sym_ForPrefix, + STATE(779), 2, + sym_ForTypeExpr, + sym_WhileTypeExpr, + [68089] = 7, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2423), 1, anon_sym_SEMI, - ACTIONS(2782), 1, + ACTIONS(2768), 1, anon_sym_linksection, - ACTIONS(2784), 1, + ACTIONS(2770), 1, anon_sym_align, - ACTIONS(2898), 1, + ACTIONS(2890), 1, anon_sym_EQ, - STATE(2058), 1, + STATE(2078), 1, sym_ByteAlign, - STATE(2265), 1, + STATE(2248), 1, sym_LinkSection, - [67791] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(107), 1, - aux_sym_LINESTRING_token1, - STATE(745), 1, - aux_sym_LINESTRING_repeat1, - STATE(2350), 3, - sym_STRINGLITERALSINGLE, - sym_LINESTRING, - sym__STRINGLITERAL, - [67809] = 5, + [68111] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2900), 1, + ACTIONS(2892), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, - sym_FormatSequence, - aux_sym_STRINGLITERALSINGLE_token1, - [67827] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2738), 1, - anon_sym_while, - ACTIONS(2740), 1, - anon_sym_for, - STATE(674), 1, - sym_WhilePrefix, - STATE(677), 1, - sym_ForPrefix, - STATE(804), 2, - sym_ForTypeExpr, - sym_WhileTypeExpr, - [67847] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2820), 1, - anon_sym_enum, - ACTIONS(2822), 1, - anon_sym_union, - STATE(834), 1, - sym__ContainerDeclAuto, - STATE(2355), 1, - sym_ContainerDeclType, - ACTIONS(2818), 2, - anon_sym_struct, - anon_sym_opaque, - [67867] = 5, + sym_FormatSequence, + aux_sym_STRINGLITERALSINGLE_token1, + [68129] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2904), 1, - anon_sym_DQUOTE, - ACTIONS(2906), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1987), 1, + ACTIONS(2894), 1, + anon_sym_DQUOTE, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2902), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67885] = 6, + [68147] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2738), 1, + ACTIONS(2732), 1, anon_sym_while, - ACTIONS(2740), 1, + ACTIONS(2734), 1, anon_sym_for, - STATE(645), 1, - sym_ForPrefix, - STATE(650), 1, + STATE(614), 1, sym_WhilePrefix, - STATE(804), 2, + STATE(616), 1, + sym_ForPrefix, + STATE(1365), 2, sym_ForTypeExpr, sym_WhileTypeExpr, - [67905] = 5, + [68167] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2796), 1, + ACTIONS(2808), 1, aux_sym_STRINGLITERALSINGLE_token2, - ACTIONS(2908), 1, + ACTIONS(2896), 1, anon_sym_DQUOTE, - STATE(1997), 1, + STATE(1960), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2792), 3, + ACTIONS(2804), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67923] = 6, - ACTIONS(95), 1, + [68185] = 5, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2820), 1, - anon_sym_enum, - ACTIONS(2822), 1, - anon_sym_union, - STATE(1837), 1, - sym__ContainerDeclAuto, - STATE(2379), 1, - sym_ContainerDeclType, - ACTIONS(2818), 2, - anon_sym_struct, - anon_sym_opaque, - [67943] = 5, + ACTIONS(2900), 1, + anon_sym_DQUOTE, + ACTIONS(2902), 1, + aux_sym_STRINGLITERALSINGLE_token2, + STATE(1999), 1, + aux_sym_STRINGLITERALSINGLE_repeat1, + ACTIONS(2898), 3, + sym_EscapeSequence, + sym_FormatSequence, + aux_sym_STRINGLITERALSINGLE_token1, + [68203] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2913), 1, + ACTIONS(2906), 1, anon_sym_DQUOTE, - ACTIONS(2915), 1, + ACTIONS(2908), 1, aux_sym_STRINGLITERALSINGLE_token2, - STATE(1997), 1, + STATE(1998), 1, aux_sym_STRINGLITERALSINGLE_repeat1, - ACTIONS(2910), 3, + ACTIONS(2904), 3, sym_EscapeSequence, sym_FormatSequence, aux_sym_STRINGLITERALSINGLE_token1, - [67961] = 6, + [68221] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1795), 1, - anon_sym_LBRACE, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(391), 1, + sym_ParamDeclList, + STATE(2295), 1, + sym_IDENTIFIER, + [68240] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + ACTIONS(2916), 1, + anon_sym_RBRACE, ACTIONS(2918), 1, + sym_doc_comment, + STATE(2274), 1, + sym_IDENTIFIER, + [68259] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2920), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1053), 1, + ACTIONS(2920), 1, + anon_sym_RBRACE, + ACTIONS(2922), 1, + sym_doc_comment, + STATE(2214), 1, sym_IDENTIFIER, - STATE(1054), 1, - sym_InitList, - [67980] = 6, + [68278] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2922), 1, - anon_sym_COMMA, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(392), 1, + sym_ParamDeclList, + STATE(2306), 1, + sym_IDENTIFIER, + [68297] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2926), 1, - anon_sym_RPAREN, - STATE(2029), 1, - aux_sym_AsmOutput_repeat1, - STATE(2357), 1, - sym_AsmInput, - [67999] = 6, + anon_sym_RBRACE, + STATE(2274), 1, + sym_IDENTIFIER, + [68316] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2137), 1, + ACTIONS(2138), 1, anon_sym_LBRACE, - ACTIONS(2928), 1, + ACTIONS(2926), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_AT, - STATE(1382), 1, + STATE(1366), 1, sym_InitList, - STATE(1383), 1, + STATE(1367), 1, sym_IDENTIFIER, - [68018] = 6, - ACTIONS(3), 1, + [68335] = 6, + ACTIONS(95), 1, sym_line_comment, + ACTIONS(2930), 1, + anon_sym_COMMA, ACTIONS(2932), 1, - anon_sym_RBRACE, + anon_sym_COLON, ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2235), 1, - sym_IDENTIFIER, - [68037] = 6, + anon_sym_RPAREN, + STATE(2075), 1, + aux_sym_AsmInput_repeat1, + STATE(2394), 1, + sym_AsmClobbers, + [68354] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2940), 1, + ACTIONS(2932), 1, anon_sym_COLON, - ACTIONS(2942), 1, + ACTIONS(2936), 1, + anon_sym_COMMA, + ACTIONS(2938), 1, anon_sym_RPAREN, - ACTIONS(2944), 1, - anon_sym_LBRACK, - STATE(2087), 1, - sym_AsmInputItem, - STATE(2351), 1, + STATE(2010), 1, + aux_sym_AsmInput_repeat1, + STATE(2341), 1, sym_AsmClobbers, - [68056] = 6, + [68373] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2946), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2940), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68075] = 6, - ACTIONS(3), 1, + [68392] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2948), 1, - anon_sym_RBRACE, - STATE(2235), 1, + STATE(375), 1, + sym_ParamDeclList, + STATE(2259), 1, sym_IDENTIFIER, - [68094] = 6, + [68411] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(1545), 1, + anon_sym_LBRACE, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(382), 1, - sym_ParamDeclList, - STATE(2284), 1, + STATE(799), 1, + sym_InitList, + STATE(1448), 1, sym_IDENTIFIER, - [68113] = 6, + [68430] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(103), 1, + aux_sym_INTEGER_token4, + STATE(2381), 1, + sym_INTEGER, + ACTIONS(101), 3, + aux_sym_INTEGER_token1, + aux_sym_INTEGER_token2, + aux_sym_INTEGER_token3, + [68445] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2952), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2942), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68132] = 6, + [68464] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(2946), 1, + anon_sym_RPAREN, + ACTIONS(2948), 1, + anon_sym_LBRACK, + STATE(2127), 1, + sym_AsmOutputItem, + STATE(2339), 1, + sym_AsmInput, + [68483] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(375), 1, - sym_ParamDeclList, - STATE(2263), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68151] = 6, - ACTIONS(3), 1, + [68502] = 6, + ACTIONS(95), 1, sym_line_comment, + ACTIONS(2932), 1, + anon_sym_COLON, ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + anon_sym_RPAREN, + ACTIONS(2952), 1, + anon_sym_LBRACK, + STATE(2099), 1, + sym_AsmInputItem, + STATE(2394), 1, + sym_AsmClobbers, + [68521] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2954), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68170] = 6, + [68540] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2956), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68189] = 6, - ACTIONS(3), 1, + [68559] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2958), 1, - anon_sym_RBRACE, - STATE(2235), 1, + STATE(388), 1, + sym_ParamDeclList, + STATE(2283), 1, sym_IDENTIFIER, - [68208] = 6, + [68578] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2932), 1, + anon_sym_COLON, + ACTIONS(2952), 1, + anon_sym_LBRACK, + ACTIONS(2958), 1, + anon_sym_RPAREN, + STATE(2099), 1, + sym_AsmInputItem, + STATE(2407), 1, + sym_AsmClobbers, + [68597] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2960), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68227] = 6, + [68616] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2962), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68246] = 6, + [68635] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1387), 1, + ACTIONS(1545), 1, anon_sym_LBRACE, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(796), 1, + STATE(799), 1, sym_InitList, - STATE(1454), 1, + STATE(800), 1, sym_IDENTIFIER, - [68265] = 6, - ACTIONS(95), 1, + [68654] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(387), 1, - sym_ParamDeclList, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2964), 1, + anon_sym_RBRACE, STATE(2274), 1, sym_IDENTIFIER, - [68284] = 6, - ACTIONS(95), 1, + [68673] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(381), 1, - sym_ParamDeclList, - STATE(2292), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2966), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68303] = 6, + [68692] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(393), 1, + STATE(395), 1, sym_ParamDeclList, - STATE(2255), 1, + STATE(2304), 1, + sym_IDENTIFIER, + [68711] = 6, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2968), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68322] = 4, + [68730] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(2946), 1, + anon_sym_RPAREN, + ACTIONS(2970), 1, + anon_sym_COMMA, + STATE(2068), 1, + aux_sym_AsmOutput_repeat1, + STATE(2339), 1, + sym_AsmInput, + [68749] = 4, ACTIONS(95), 1, sym_line_comment, ACTIONS(103), 1, aux_sym_INTEGER_token4, - STATE(2318), 1, + STATE(2315), 1, sym_INTEGER, ACTIONS(101), 3, aux_sym_INTEGER_token1, aux_sym_INTEGER_token2, aux_sym_INTEGER_token3, - [68337] = 6, + [68764] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2964), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2972), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68356] = 6, - ACTIONS(95), 1, + [68783] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(1387), 1, - anon_sym_LBRACE, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(796), 1, - sym_InitList, - STATE(814), 1, + ACTIONS(2974), 1, + anon_sym_RBRACE, + ACTIONS(2976), 1, + sym_doc_comment, + STATE(2152), 1, sym_IDENTIFIER, - [68375] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2940), 1, - anon_sym_COLON, - ACTIONS(2942), 1, - anon_sym_RPAREN, - ACTIONS(2966), 1, - anon_sym_COMMA, - STATE(2071), 1, - aux_sym_AsmInput_repeat1, - STATE(2351), 1, - sym_AsmClobbers, - [68394] = 6, + [68802] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2968), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2978), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68413] = 6, + [68821] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2970), 1, + ACTIONS(2980), 1, anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(2982), 1, + sym_doc_comment, + STATE(2212), 1, sym_IDENTIFIER, - [68432] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2940), 1, - anon_sym_COLON, - ACTIONS(2972), 1, - anon_sym_COMMA, - ACTIONS(2974), 1, - anon_sym_RPAREN, - STATE(2020), 1, - aux_sym_AsmInput_repeat1, - STATE(2343), 1, - sym_AsmClobbers, - [68451] = 6, + [68840] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2976), 1, - anon_sym_LBRACE, - ACTIONS(2978), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2980), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1776), 1, - sym_InitList, - STATE(1777), 1, + STATE(379), 1, + sym_ParamDeclList, + STATE(2298), 1, sym_IDENTIFIER, - [68470] = 6, + [68859] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2982), 1, - anon_sym_RBRACE, - ACTIONS(2984), 1, + ACTIONS(2918), 1, sym_doc_comment, - STATE(2199), 1, + ACTIONS(2984), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68489] = 6, - ACTIONS(95), 1, + [68878] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2924), 1, - anon_sym_COLON, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(2986), 1, - anon_sym_RPAREN, - ACTIONS(2988), 1, - anon_sym_LBRACK, - STATE(2180), 1, - sym_AsmOutputItem, - STATE(2326), 1, - sym_AsmInput, - [68508] = 6, + anon_sym_RBRACE, + STATE(2274), 1, + sym_IDENTIFIER, + [68897] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(395), 1, + STATE(372), 1, sym_ParamDeclList, - STATE(2301), 1, + STATE(2273), 1, sym_IDENTIFIER, - [68527] = 6, + [68916] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2990), 1, + ACTIONS(2988), 1, anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(2990), 1, + sym_doc_comment, + STATE(2159), 1, sym_IDENTIFIER, - [68546] = 6, + [68935] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2986), 1, - anon_sym_RPAREN, - ACTIONS(2992), 1, - anon_sym_COMMA, - STATE(2062), 1, - aux_sym_AsmOutput_repeat1, - STATE(2326), 1, - sym_AsmInput, - [68565] = 6, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(384), 1, + sym_ParamDeclList, + STATE(2257), 1, + sym_IDENTIFIER, + [68954] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2994), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2992), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68584] = 6, - ACTIONS(95), 1, + [68973] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(392), 1, - sym_ParamDeclList, - STATE(2236), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2994), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68603] = 6, - ACTIONS(95), 1, + [68992] = 6, + ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(386), 1, - sym_ParamDeclList, - STATE(2257), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(2996), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68622] = 6, + [69011] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2924), 1, + ACTIONS(2944), 1, anon_sym_COLON, - ACTIONS(2988), 1, + ACTIONS(2948), 1, anon_sym_LBRACK, - ACTIONS(2996), 1, + ACTIONS(2998), 1, anon_sym_RPAREN, - STATE(1999), 1, + STATE(2127), 1, sym_AsmOutputItem, - STATE(2393), 1, + STATE(2400), 1, sym_AsmInput, - [68641] = 6, + [69030] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(373), 1, - sym_ParamDeclList, - STATE(2247), 1, - sym_IDENTIFIER, - [68660] = 6, - ACTIONS(3), 1, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(2948), 1, + anon_sym_LBRACK, + ACTIONS(3000), 1, + anon_sym_RPAREN, + STATE(2054), 1, + sym_AsmOutputItem, + STATE(2349), 1, + sym_AsmInput, + [69049] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(2998), 1, - anon_sym_RBRACE, - STATE(2235), 1, - sym_IDENTIFIER, - [68679] = 6, - ACTIONS(3), 1, + ACTIONS(2932), 1, + anon_sym_COLON, + ACTIONS(2952), 1, + anon_sym_LBRACK, + ACTIONS(3002), 1, + anon_sym_RPAREN, + STATE(2011), 1, + sym_AsmInputItem, + STATE(2324), 1, + sym_AsmClobbers, + [69068] = 6, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3000), 1, - anon_sym_RBRACE, - STATE(2235), 1, + STATE(387), 1, + sym_ParamDeclList, + STATE(2293), 1, sym_IDENTIFIER, - [68698] = 6, + [69087] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2940), 1, - anon_sym_COLON, - ACTIONS(2944), 1, - anon_sym_LBRACK, - ACTIONS(3002), 1, - anon_sym_RPAREN, - STATE(2087), 1, - sym_AsmInputItem, - STATE(2382), 1, - sym_AsmClobbers, - [68717] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + STATE(376), 1, + sym_ParamDeclList, + STATE(2265), 1, + sym_IDENTIFIER, + [69106] = 6, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(1785), 1, + anon_sym_LBRACE, ACTIONS(3004), 1, - anon_sym_RBRACE, + aux_sym_IDENTIFIER_token1, ACTIONS(3006), 1, - sym_doc_comment, - STATE(2077), 1, + anon_sym_AT, + STATE(1107), 1, sym_IDENTIFIER, - [68736] = 6, + STATE(1108), 1, + sym_InitList, + [69125] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2924), 1, - anon_sym_COLON, - ACTIONS(2988), 1, - anon_sym_LBRACK, ACTIONS(3008), 1, - anon_sym_RPAREN, - STATE(2180), 1, - sym_AsmOutputItem, - STATE(2329), 1, - sym_AsmInput, - [68755] = 6, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1864), 1, anon_sym_LBRACE, ACTIONS(3010), 1, aux_sym_IDENTIFIER_token1, ACTIONS(3012), 1, anon_sym_AT, - STATE(1158), 1, - sym_InitList, - STATE(1159), 1, + STATE(1795), 1, sym_IDENTIFIER, - [68774] = 6, + STATE(1813), 1, + sym_InitList, + [69144] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2940), 1, - anon_sym_COLON, - ACTIONS(2944), 1, - anon_sym_LBRACK, + ACTIONS(1873), 1, + anon_sym_LBRACE, ACTIONS(3014), 1, - anon_sym_RPAREN, - STATE(2023), 1, - sym_AsmInputItem, - STATE(2341), 1, - sym_AsmClobbers, - [68793] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, ACTIONS(3016), 1, - anon_sym_RBRACE, - STATE(2235), 1, + anon_sym_AT, + STATE(1126), 1, sym_IDENTIFIER, - [68812] = 6, + STATE(1133), 1, + sym_InitList, + [69163] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(389), 1, - sym_ParamDeclList, - STATE(2254), 1, - sym_IDENTIFIER, - [68831] = 6, + ACTIONS(2944), 1, + anon_sym_COLON, + ACTIONS(3018), 1, + anon_sym_COMMA, + ACTIONS(3020), 1, + anon_sym_RPAREN, + STATE(2031), 1, + aux_sym_AsmOutput_repeat1, + STATE(2350), 1, + sym_AsmInput, + [69182] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3018), 1, + ACTIONS(3022), 1, anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(3024), 1, + sym_doc_comment, + STATE(2085), 1, sym_IDENTIFIER, - [68850] = 6, + [69201] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3020), 1, - anon_sym_RBRACE, - ACTIONS(3022), 1, + ACTIONS(2918), 1, sym_doc_comment, - STATE(2178), 1, + ACTIONS(3026), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68869] = 6, + [69220] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3024), 1, + ACTIONS(2918), 1, + sym_doc_comment, + ACTIONS(3028), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68888] = 6, + [69239] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3026), 1, + ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(3028), 1, + ACTIONS(3032), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3030), 1, + ACTIONS(3034), 1, anon_sym_AT, - STATE(1708), 1, + STATE(1694), 1, sym_IDENTIFIER, - STATE(1709), 1, + STATE(1696), 1, sym_InitList, - [68907] = 6, + [69258] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3032), 1, - anon_sym_RBRACE, - ACTIONS(3034), 1, + ACTIONS(2918), 1, sym_doc_comment, - STATE(2147), 1, + ACTIONS(3036), 1, + anon_sym_RBRACE, + STATE(2274), 1, sym_IDENTIFIER, - [68926] = 6, + [69277] = 6, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2910), 1, + anon_sym_LPAREN, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(380), 1, + STATE(381), 1, sym_ParamDeclList, - STATE(2225), 1, + STATE(2277), 1, sym_IDENTIFIER, - [68945] = 6, + [69296] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3036), 1, - anon_sym_RBRACE, - STATE(2235), 1, - sym_IDENTIFIER, - [68964] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2934), 1, + ACTIONS(2918), 1, sym_doc_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, ACTIONS(3038), 1, anon_sym_RBRACE, - STATE(2235), 1, + STATE(2274), 1, sym_IDENTIFIER, - [68983] = 6, + [69315] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, + ACTIONS(2918), 1, + sym_doc_comment, ACTIONS(3040), 1, anon_sym_RBRACE, - ACTIONS(3042), 1, - sym_doc_comment, - STATE(2213), 1, + STATE(2274), 1, sym_IDENTIFIER, - [69002] = 6, + [69334] = 6, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3044), 1, + ACTIONS(3042), 1, anon_sym_RBRACE, - ACTIONS(3046), 1, + ACTIONS(3044), 1, sym_doc_comment, - STATE(2080), 1, + STATE(2163), 1, sym_IDENTIFIER, - [69021] = 4, + [69353] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(103), 1, - aux_sym_INTEGER_token4, - STATE(2366), 1, - sym_INTEGER, - ACTIONS(101), 3, - aux_sym_INTEGER_token1, - aux_sym_INTEGER_token2, - aux_sym_INTEGER_token3, - [69036] = 6, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3048), 1, - anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(3046), 1, + anon_sym_STAR, + STATE(2338), 1, sym_IDENTIFIER, - [69055] = 6, - ACTIONS(3), 1, + [69369] = 5, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3050), 1, - anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(3048), 1, + anon_sym_STAR, + STATE(2229), 1, sym_IDENTIFIER, - [69074] = 6, - ACTIONS(3), 1, + [69385] = 5, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3052), 1, - anon_sym_RBRACE, - STATE(2235), 1, + ACTIONS(3050), 1, + anon_sym_STAR, + STATE(2374), 1, sym_IDENTIFIER, - [69093] = 5, + [69401] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2427), 1, - anon_sym_SEMI, - ACTIONS(2782), 1, + ACTIONS(2768), 1, anon_sym_linksection, + ACTIONS(3052), 1, + anon_sym_SEMI, ACTIONS(3054), 1, anon_sym_EQ, - STATE(2262), 1, + STATE(2297), 1, sym_LinkSection, - [69109] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1090), 4, - anon_sym_inline, - anon_sym_LBRACE, - anon_sym_while, - anon_sym_for, - [69119] = 4, + [69417] = 4, ACTIONS(95), 1, sym_line_comment, ACTIONS(3056), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - ACTIONS(2191), 2, - anon_sym_RBRACE, + STATE(2068), 1, + aux_sym_AsmOutput_repeat1, + ACTIONS(3059), 2, + anon_sym_COLON, anon_sym_RPAREN, - [69133] = 5, + [69431] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2782), 1, - anon_sym_linksection, - ACTIONS(3059), 1, + ACTIONS(2371), 1, anon_sym_SEMI, + ACTIONS(2768), 1, + anon_sym_linksection, ACTIONS(3061), 1, anon_sym_EQ, - STATE(2275), 1, + STATE(2255), 1, sym_LinkSection, - [69149] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3063), 1, - anon_sym_COMMA, - STATE(2062), 1, - aux_sym_AsmOutput_repeat1, - ACTIONS(3066), 2, - anon_sym_COLON, - anon_sym_RPAREN, - [69163] = 5, + [69447] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(3068), 1, - anon_sym_STAR, - STATE(2258), 1, - sym_IDENTIFIER, - [69179] = 5, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(2758), 1, + anon_sym_LBRACE, + STATE(1899), 1, + sym_Block, + STATE(2301), 1, + sym_STRINGLITERALSINGLE, + [69463] = 5, ACTIONS(3), 1, sym_line_comment, - ACTIONS(2934), 1, - sym_doc_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2235), 1, + ACTIONS(2918), 1, + sym_doc_comment, + STATE(2274), 1, sym_IDENTIFIER, - [69195] = 5, + [69479] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(2758), 1, + anon_sym_LBRACE, + STATE(1897), 1, + sym_Block, + STATE(2289), 1, + sym_STRINGLITERALSINGLE, + [69495] = 5, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3070), 1, + ACTIONS(3063), 1, anon_sym_DASH_GT, - STATE(2371), 1, + STATE(2329), 1, sym_IDENTIFIER, - [69211] = 5, + [69511] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(3072), 1, - anon_sym_STAR, - STATE(2383), 1, - sym_IDENTIFIER, - [69227] = 5, + ACTIONS(3065), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + ACTIONS(2239), 2, + anon_sym_RBRACE, + anon_sym_RPAREN, + [69525] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - ACTIONS(3074), 1, - anon_sym_STAR, - STATE(2344), 1, - sym_IDENTIFIER, - [69243] = 5, + ACTIONS(3068), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym_AsmInput_repeat1, + ACTIONS(3071), 2, + anon_sym_COLON, + anon_sym_RPAREN, + [69539] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - ACTIONS(3076), 1, + ACTIONS(3073), 1, anon_sym_STAR, - STATE(2272), 1, + STATE(2268), 1, sym_IDENTIFIER, - [69259] = 5, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2782), 1, - anon_sym_linksection, - ACTIONS(3078), 1, - anon_sym_SEMI, - ACTIONS(3080), 1, - anon_sym_EQ, - STATE(2281), 1, - sym_LinkSection, - [69275] = 5, + [69555] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, - ACTIONS(2768), 1, + ACTIONS(1120), 4, + anon_sym_inline, anon_sym_LBRACE, - STATE(1892), 1, - sym_Block, - STATE(2291), 1, - sym_STRINGLITERALSINGLE, - [69291] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3082), 1, - anon_sym_COMMA, - STATE(2071), 1, - aux_sym_AsmInput_repeat1, - ACTIONS(3085), 2, - anon_sym_COLON, - anon_sym_RPAREN, - [69305] = 5, + anon_sym_while, + anon_sym_for, + [69565] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2363), 1, + ACTIONS(2425), 1, anon_sym_SEMI, - ACTIONS(2782), 1, + ACTIONS(2768), 1, anon_sym_linksection, - ACTIONS(3087), 1, + ACTIONS(3075), 1, anon_sym_EQ, - STATE(2271), 1, + STATE(2245), 1, sym_LinkSection, - [69321] = 5, + [69581] = 5, ACTIONS(95), 1, sym_line_comment, - ACTIONS(105), 1, - anon_sym_DQUOTE, ACTIONS(2768), 1, - anon_sym_LBRACE, - STATE(1899), 1, - sym_Block, - STATE(2282), 1, - sym_STRINGLITERALSINGLE, - [69337] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(624), 1, - anon_sym_RBRACE, - ACTIONS(3089), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [69350] = 4, + anon_sym_linksection, + ACTIONS(3077), 1, + anon_sym_SEMI, + ACTIONS(3079), 1, + anon_sym_EQ, + STATE(2290), 1, + sym_LinkSection, + [69597] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1947), 1, + STATE(790), 1, sym_IDENTIFIER, - [69363] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(718), 1, - anon_sym_RBRACE, - ACTIONS(3091), 1, - anon_sym_COMMA, - STATE(2189), 1, - aux_sym_InitList_repeat1, - [69376] = 4, + [69610] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3093), 1, - anon_sym_COMMA, - ACTIONS(3095), 1, - anon_sym_RBRACE, - STATE(2090), 1, - aux_sym_ErrorSetDecl_repeat1, - [69389] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3097), 1, + ACTIONS(3081), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3099), 1, + ACTIONS(3083), 1, anon_sym_AT, - STATE(358), 1, + STATE(90), 1, sym_IDENTIFIER, - [69402] = 4, + [69623] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2253), 1, + ACTIONS(2235), 1, anon_sym_RBRACE, - ACTIONS(3101), 1, + ACTIONS(3085), 1, anon_sym_COMMA, - STATE(2095), 1, + STATE(2091), 1, aux_sym_InitList_repeat1, - [69415] = 4, + [69636] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3103), 1, - anon_sym_COMMA, - ACTIONS(3105), 1, + ACTIONS(2223), 1, anon_sym_RBRACE, - STATE(2097), 1, - aux_sym_ErrorSetDecl_repeat1, - [69428] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1030), 1, - anon_sym_RPAREN, - ACTIONS(3107), 1, + ACTIONS(3087), 1, anon_sym_COMMA, - STATE(2135), 1, - aux_sym_ParamDeclList_repeat1, - [69441] = 4, + STATE(2188), 1, + aux_sym_InitList_repeat1, + [69649] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(744), 1, - anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [69454] = 4, + ACTIONS(1018), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + aux_sym_IDENTIFIER_token1, + STATE(1745), 1, + sym_STRINGLITERALSINGLE, + [69662] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3111), 1, + ACTIONS(3091), 1, anon_sym_COMMA, - ACTIONS(3113), 1, + ACTIONS(3093), 1, anon_sym_RBRACE, - STATE(2202), 1, + STATE(2093), 1, aux_sym_ErrorSetDecl_repeat1, - [69467] = 3, + [69675] = 4, ACTIONS(95), 1, sym_line_comment, - STATE(1884), 1, - sym_VarDecl, - ACTIONS(2734), 2, - anon_sym_const, - anon_sym_var, - [69478] = 4, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2380), 1, + sym_IDENTIFIER, + [69688] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2083), 1, + STATE(2190), 1, sym_IDENTIFIER, - [69491] = 4, + [69701] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2217), 1, - anon_sym_RBRACE, - ACTIONS(3115), 1, + ACTIONS(1028), 1, + anon_sym_RPAREN, + ACTIONS(3095), 1, anon_sym_COMMA, - STATE(2076), 1, - aux_sym_InitList_repeat1, - [69504] = 2, + STATE(2224), 1, + aux_sym_ParamDeclList_repeat1, + [69714] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3085), 3, + ACTIONS(742), 1, + anon_sym_RBRACE, + ACTIONS(3097), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RPAREN, - [69513] = 4, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [69727] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(734), 1, - anon_sym_RPAREN, - ACTIONS(3117), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [69526] = 4, + ACTIONS(742), 1, + anon_sym_RBRACE, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [69740] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2772), 1, - anon_sym_RPAREN, - ACTIONS(3119), 1, + ACTIONS(742), 1, + anon_sym_RBRACE, + ACTIONS(3101), 1, anon_sym_COMMA, - STATE(2109), 1, - aux_sym_AsmClobbers_repeat1, - [69539] = 4, + STATE(2199), 1, + aux_sym_InitList_repeat1, + [69753] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3121), 1, + ACTIONS(3103), 1, anon_sym_COMMA, - ACTIONS(3123), 1, + ACTIONS(3105), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2109), 1, aux_sym_ErrorSetDecl_repeat1, - [69552] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2385), 1, - sym_IDENTIFIER, - [69565] = 4, + [69766] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3125), 1, + ACTIONS(3107), 1, anon_sym_COMMA, - ACTIONS(3127), 1, + ACTIONS(3109), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [69578] = 4, + [69779] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(752), 1, - anon_sym_RBRACE, - ACTIONS(3129), 1, + ACTIONS(744), 1, + anon_sym_RPAREN, + ACTIONS(3111), 1, anon_sym_COMMA, - STATE(2060), 1, + STATE(2074), 1, aux_sym_InitList_repeat2, - [69591] = 4, + [69792] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(752), 1, + ACTIONS(722), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [69604] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(752), 1, - anon_sym_RBRACE, - ACTIONS(3131), 1, - anon_sym_COMMA, - STATE(2189), 1, - aux_sym_InitList_repeat1, - [69617] = 4, + [69805] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3133), 1, + ACTIONS(3113), 1, anon_sym_COMMA, - ACTIONS(3135), 1, + ACTIONS(3115), 1, anon_sym_RBRACE, - STATE(2107), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [69630] = 4, + [69818] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3137), 1, - anon_sym_COMMA, - ACTIONS(3139), 1, - anon_sym_RBRACE, - STATE(2215), 1, - aux_sym_ErrorSetDecl_repeat1, - [69643] = 4, + STATE(1909), 1, + sym_VarDecl, + ACTIONS(2726), 2, + anon_sym_const, + anon_sym_var, + [69829] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(982), 1, - anon_sym_DQUOTE, - ACTIONS(3141), 1, + ACTIONS(3004), 1, aux_sym_IDENTIFIER_token1, - STATE(1669), 1, - sym_STRINGLITERALSINGLE, - [69656] = 4, + ACTIONS(3006), 1, + anon_sym_AT, + STATE(995), 1, + sym_IDENTIFIER, + [69842] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(754), 1, - anon_sym_RPAREN, - ACTIONS(3143), 1, + ACTIONS(3071), 3, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [69669] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + [69851] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(1948), 1, - sym_IDENTIFIER, - [69682] = 4, + ACTIONS(726), 1, + anon_sym_RPAREN, + ACTIONS(3117), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [69864] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3145), 1, + ACTIONS(3119), 1, anon_sym_SEMI, - ACTIONS(3147), 1, + ACTIONS(3121), 1, anon_sym_else, - STATE(870), 1, + STATE(893), 1, sym__ElseStatementTail, - [69695] = 4, + [69877] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(738), 1, - anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [69708] = 4, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(1950), 1, + sym_IDENTIFIER, + [69890] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3147), 1, + ACTIONS(3121), 1, anon_sym_else, - ACTIONS(3149), 1, + ACTIONS(3123), 1, anon_sym_SEMI, - STATE(871), 1, + STATE(892), 1, sym__ElseStatementTail, - [69721] = 4, + [69903] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3004), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(3006), 1, anon_sym_AT, - STATE(2156), 1, + STATE(1099), 1, sym_IDENTIFIER, - [69734] = 4, + [69916] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3147), 1, + ACTIONS(3121), 1, anon_sym_else, - ACTIONS(3151), 1, + ACTIONS(3125), 1, anon_sym_SEMI, - STATE(872), 1, + STATE(891), 1, sym__ElseStatementTail, - [69747] = 4, + [69929] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(756), 1, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2168), 1, + sym_IDENTIFIER, + [69942] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(748), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [69760] = 4, + [69955] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3153), 1, + ACTIONS(3014), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(3016), 1, + anon_sym_AT, + STATE(1265), 1, + sym_IDENTIFIER, + [69968] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3127), 1, anon_sym_COMMA, - ACTIONS(3155), 1, + ACTIONS(3129), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [69773] = 4, + [69981] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3131), 1, + anon_sym_COMMA, + ACTIONS(3133), 1, + anon_sym_RBRACE, + STATE(2115), 1, + aux_sym_SwitchExpr_repeat1, + [69994] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2096), 1, + STATE(2092), 1, sym_IDENTIFIER, - [69786] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3157), 1, - anon_sym_COMMA, - ACTIONS(3160), 1, - anon_sym_RPAREN, - STATE(2109), 1, - aux_sym_AsmClobbers_repeat1, - [69799] = 4, + [70007] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2349), 1, + STATE(2348), 1, sym_IDENTIFIER, - [69812] = 4, + [70020] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, + ACTIONS(2758), 1, anon_sym_LBRACE, - ACTIONS(3162), 1, + ACTIONS(3135), 1, anon_sym_SEMI, - STATE(1884), 1, + STATE(1909), 1, sym_Block, - [69825] = 4, + [70033] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3164), 1, - anon_sym_COMMA, - ACTIONS(3166), 1, - anon_sym_RBRACE, - STATE(2215), 1, - aux_sym_ErrorSetDecl_repeat1, - [69838] = 4, + ACTIONS(171), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + aux_sym_IDENTIFIER_token1, + STATE(1026), 1, + sym_STRINGLITERALSINGLE, + [70046] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3168), 1, - anon_sym_COMMA, - ACTIONS(3170), 1, + ACTIONS(584), 1, anon_sym_RBRACE, - STATE(2117), 1, + ACTIONS(3137), 1, + anon_sym_COMMA, + STATE(2211), 1, aux_sym_SwitchExpr_repeat1, - [69851] = 4, + [70059] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(916), 1, - anon_sym_DQUOTE, - ACTIONS(3141), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - STATE(1718), 1, - sym_STRINGLITERALSINGLE, - [69864] = 4, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2145), 1, + sym_IDENTIFIER, + [70072] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(602), 1, - anon_sym_RBRACE, - ACTIONS(3172), 1, + ACTIONS(3139), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [69877] = 4, + ACTIONS(3141), 1, + anon_sym_RBRACE, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [70085] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3174), 1, + ACTIONS(3143), 1, anon_sym_COMMA, - ACTIONS(3176), 1, + ACTIONS(3145), 1, anon_sym_RBRACE, - STATE(2121), 1, + STATE(2122), 1, aux_sym_SwitchExpr_repeat1, - [69890] = 4, + [70098] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(588), 1, - anon_sym_RBRACE, - ACTIONS(3178), 1, + ACTIONS(3147), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [69903] = 4, + ACTIONS(3149), 1, + anon_sym_RBRACE, + STATE(2096), 1, + aux_sym_ErrorSetDecl_repeat1, + [70111] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2122), 1, - sym_IDENTIFIER, - [69916] = 4, + ACTIONS(728), 1, + anon_sym_RBRACE, + ACTIONS(3151), 1, + anon_sym_COMMA, + STATE(2199), 1, + aux_sym_InitList_repeat1, + [70124] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(722), 1, + ACTIONS(2403), 1, anon_sym_RPAREN, - ACTIONS(3180), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [69929] = 4, + ACTIONS(3153), 1, + anon_sym_LBRACE, + ACTIONS(3155), 1, + anon_sym_LPAREN, + [70137] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3182), 1, - anon_sym_COMMA, - ACTIONS(3184), 1, + ACTIONS(614), 1, anon_sym_RBRACE, - STATE(2115), 1, + ACTIONS(3157), 1, + anon_sym_COMMA, + STATE(2211), 1, aux_sym_SwitchExpr_repeat1, - [69942] = 4, + [70150] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(592), 1, + ACTIONS(728), 1, anon_sym_RBRACE, - ACTIONS(3186), 1, - anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [69955] = 4, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [70163] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3188), 1, - anon_sym_COMMA, - ACTIONS(3190), 1, + ACTIONS(728), 1, anon_sym_RBRACE, - STATE(2112), 1, - aux_sym_ErrorSetDecl_repeat1, - [69968] = 4, + ACTIONS(3159), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [70176] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2151), 1, + STATE(2218), 1, sym_IDENTIFIER, - [69981] = 4, + [70189] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2340), 1, + STATE(992), 1, sym_IDENTIFIER, - [69994] = 4, + [70202] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3192), 1, + ACTIONS(3059), 3, anon_sym_COMMA, - ACTIONS(3194), 1, - anon_sym_RBRACE, - STATE(2215), 1, - aux_sym_ErrorSetDecl_repeat1, - [70007] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + [70211] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(746), 1, - anon_sym_RPAREN, - ACTIONS(3196), 1, + ACTIONS(604), 1, + anon_sym_RBRACE, + ACTIONS(3161), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70020] = 4, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [70224] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(261), 1, - anon_sym_DQUOTE, - ACTIONS(3141), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - STATE(1355), 1, - sym_STRINGLITERALSINGLE, - [70033] = 4, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2383), 1, + sym_IDENTIFIER, + [70237] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(714), 1, + ACTIONS(3163), 1, + anon_sym_COMMA, + ACTIONS(3165), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [70046] = 4, + STATE(2128), 1, + aux_sym_SwitchExpr_repeat1, + [70250] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2345), 1, + ACTIONS(3167), 1, + anon_sym_COMMA, + ACTIONS(3169), 1, + anon_sym_RBRACE, + STATE(2204), 1, + aux_sym_SwitchExpr_repeat1, + [70263] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2341), 1, anon_sym_SEMI, - ACTIONS(2768), 1, + ACTIONS(2758), 1, anon_sym_LBRACE, - STATE(1898), 1, + STATE(1896), 1, sym_Block, - [70059] = 4, + [70276] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(718), 1, - anon_sym_RBRACE, - ACTIONS(3198), 1, + ACTIONS(3171), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70072] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(732), 1, + ACTIONS(3173), 1, anon_sym_RBRACE, - ACTIONS(3200), 1, - anon_sym_COMMA, - STATE(2189), 1, - aux_sym_InitList_repeat1, - [70085] = 4, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [70289] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(732), 1, + ACTIONS(716), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [70098] = 4, + [70302] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3202), 1, + ACTIONS(3175), 1, anon_sym_COMMA, - ACTIONS(3204), 1, - anon_sym_RBRACE, - STATE(2157), 1, - aux_sym_SwitchExpr_repeat1, - [70111] = 4, + ACTIONS(3177), 1, + anon_sym_EQ_GT, + STATE(2200), 1, + aux_sym_SwitchCase_repeat1, + [70315] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3206), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3208), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(351), 1, + STATE(2346), 1, sym_IDENTIFIER, - [70124] = 4, + [70328] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3210), 1, - anon_sym_COMMA, - ACTIONS(3213), 1, + ACTIONS(740), 1, anon_sym_RPAREN, - STATE(2135), 1, - aux_sym_ParamDeclList_repeat1, - [70137] = 4, + ACTIONS(3179), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [70341] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(732), 1, - anon_sym_RBRACE, - ACTIONS(3215), 1, + ACTIONS(2772), 1, + anon_sym_RPAREN, + ACTIONS(3181), 1, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70150] = 4, + STATE(2205), 1, + aux_sym_AsmClobbers_repeat1, + [70354] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(105), 1, + ACTIONS(261), 1, anon_sym_DQUOTE, - ACTIONS(3141), 1, + ACTIONS(3089), 1, aux_sym_IDENTIFIER_token1, - STATE(771), 1, + STATE(1341), 1, sym_STRINGLITERALSINGLE, - [70163] = 4, + [70367] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3217), 1, + ACTIONS(3183), 3, anon_sym_COMMA, - ACTIONS(3219), 1, - anon_sym_RBRACE, - STATE(2215), 1, - aux_sym_ErrorSetDecl_repeat1, - [70176] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + [70376] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2928), 1, + ACTIONS(3185), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RPAREN, + [70385] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2930), 1, - anon_sym_AT, - STATE(1394), 1, - sym_IDENTIFIER, - [70189] = 4, + STATE(811), 1, + sym_STRINGLITERALSINGLE, + [70398] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3221), 1, + ACTIONS(3187), 1, anon_sym_COMMA, - ACTIONS(3224), 1, + ACTIONS(3190), 1, anon_sym_EQ_GT, - STATE(2140), 1, + STATE(2143), 1, aux_sym_SwitchCase_repeat1, - [70202] = 4, + [70411] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3226), 1, + ACTIONS(3192), 1, anon_sym_COMMA, - ACTIONS(3228), 1, + ACTIONS(3194), 1, anon_sym_RBRACE, - STATE(2092), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [70215] = 4, + [70424] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2928), 1, + ACTIONS(3196), 1, + anon_sym_COMMA, + ACTIONS(3198), 1, + anon_sym_RBRACE, + STATE(2133), 1, + aux_sym_ErrorSetDecl_repeat1, + [70437] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3200), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2930), 1, + ACTIONS(3202), 1, anon_sym_AT, - STATE(1354), 1, + STATE(355), 1, sym_IDENTIFIER, - [70228] = 4, + [70450] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(748), 1, + ACTIONS(732), 1, anon_sym_RBRACE, - ACTIONS(3230), 1, + ACTIONS(3204), 1, anon_sym_COMMA, - STATE(2189), 1, + STATE(2199), 1, aux_sym_InitList_repeat1, - [70241] = 4, + [70463] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(748), 1, + ACTIONS(732), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [70254] = 4, + [70476] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(724), 1, - anon_sym_RPAREN, - ACTIONS(3232), 1, + ACTIONS(3206), 3, anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70267] = 4, + anon_sym_COLON, + anon_sym_RPAREN, + [70485] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2209), 1, + ACTIONS(732), 1, anon_sym_RBRACE, - ACTIONS(3234), 1, - anon_sym_COMMA, - STATE(2155), 1, - aux_sym_InitList_repeat1, - [70280] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3236), 1, + ACTIONS(3208), 1, anon_sym_COMMA, - ACTIONS(3238), 1, - anon_sym_RBRACE, - STATE(2158), 1, - aux_sym_ErrorSetDecl_repeat1, - [70293] = 4, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [70498] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(748), 1, - anon_sym_RBRACE, - ACTIONS(3240), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70306] = 4, + ACTIONS(2926), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2928), 1, + anon_sym_AT, + STATE(1401), 1, + sym_IDENTIFIER, + [70511] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3242), 1, + ACTIONS(3210), 1, anon_sym_COMMA, - ACTIONS(3244), 1, + ACTIONS(3212), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2117), 1, aux_sym_ErrorSetDecl_repeat1, - [70319] = 4, + [70524] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(610), 1, + ACTIONS(2177), 1, anon_sym_RBRACE, - ACTIONS(3246), 1, + ACTIONS(3214), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [70332] = 4, + STATE(2120), 1, + aux_sym_InitList_repeat1, + [70537] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3248), 1, - anon_sym_COMMA, - ACTIONS(3250), 1, - anon_sym_RBRACE, - STATE(2125), 1, - aux_sym_ErrorSetDecl_repeat1, - [70345] = 4, + ACTIONS(2926), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2928), 1, + anon_sym_AT, + STATE(1342), 1, + sym_IDENTIFIER, + [70550] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3252), 1, - anon_sym_COMMA, - ACTIONS(3254), 1, - anon_sym_RBRACE, - STATE(2150), 1, - aux_sym_SwitchExpr_repeat1, - [70358] = 4, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2369), 1, + sym_IDENTIFIER, + [70563] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(762), 1, - anon_sym_RBRACE, - ACTIONS(3256), 1, - anon_sym_COMMA, - STATE(2060), 1, - aux_sym_InitList_repeat2, - [70371] = 4, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2240), 1, + sym_IDENTIFIER, + [70576] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(762), 1, - anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [70384] = 4, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2353), 1, + sym_IDENTIFIER, + [70589] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(762), 1, + ACTIONS(2197), 1, anon_sym_RBRACE, - ACTIONS(3258), 1, + ACTIONS(3216), 1, anon_sym_COMMA, - STATE(2189), 1, + STATE(2167), 1, aux_sym_InitList_repeat1, - [70397] = 4, + [70602] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3260), 1, + ACTIONS(3218), 1, anon_sym_COMMA, - ACTIONS(3262), 1, + ACTIONS(3220), 1, anon_sym_RBRACE, - STATE(2166), 1, + STATE(2170), 1, aux_sym_ErrorSetDecl_repeat1, - [70410] = 4, + [70615] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(622), 1, - anon_sym_RBRACE, - ACTIONS(3264), 1, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2354), 1, + sym_IDENTIFIER, + [70628] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3222), 1, anon_sym_COMMA, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [70423] = 4, + ACTIONS(3224), 1, + anon_sym_RPAREN, + STATE(2138), 1, + aux_sym_AsmClobbers_repeat1, + [70641] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3010), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(3012), 1, + anon_sym_AT, + STATE(1791), 1, + sym_IDENTIFIER, + [70654] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3266), 1, + ACTIONS(3226), 1, anon_sym_COMMA, - ACTIONS(3268), 1, + ACTIONS(3228), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2144), 1, aux_sym_ErrorSetDecl_repeat1, - [70436] = 4, + [70667] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(726), 1, + ACTIONS(2213), 1, anon_sym_RBRACE, - ACTIONS(3270), 1, + ACTIONS(3230), 1, anon_sym_COMMA, - STATE(2189), 1, + STATE(2147), 1, aux_sym_InitList_repeat1, - [70449] = 4, + [70680] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(760), 1, - anon_sym_RPAREN, - ACTIONS(3272), 1, + ACTIONS(768), 1, + anon_sym_RBRACE, + ACTIONS(3232), 1, anon_sym_COMMA, - STATE(2060), 1, + STATE(2074), 1, aux_sym_InitList_repeat2, - [70462] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3274), 1, - anon_sym_COMMA, - ACTIONS(3276), 1, - anon_sym_RPAREN, - STATE(2081), 1, - aux_sym_ParamDeclList_repeat1, - [70475] = 4, + [70693] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(726), 1, + ACTIONS(768), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [70488] = 4, + [70706] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3278), 1, + ACTIONS(768), 1, + anon_sym_RBRACE, + ACTIONS(3234), 1, anon_sym_COMMA, - ACTIONS(3280), 1, - anon_sym_EQ_GT, - STATE(2177), 1, - aux_sym_SwitchCase_repeat1, - [70501] = 4, + STATE(2199), 1, + aux_sym_InitList_repeat1, + [70719] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(768), 1, + ACTIONS(3236), 1, + anon_sym_COMMA, + ACTIONS(3238), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [70514] = 4, + STATE(2178), 1, + aux_sym_ErrorSetDecl_repeat1, + [70732] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2918), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2920), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1014), 1, + STATE(2281), 1, sym_IDENTIFIER, - [70527] = 4, + [70745] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3282), 1, + ACTIONS(3240), 1, anon_sym_COMMA, - ACTIONS(3284), 1, + ACTIONS(3242), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [70540] = 4, + [70758] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2310), 1, - sym_IDENTIFIER, - [70553] = 4, + ACTIONS(3244), 1, + anon_sym_COMMA, + ACTIONS(3246), 1, + anon_sym_RPAREN, + STATE(2088), 1, + aux_sym_ParamDeclList_repeat1, + [70771] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(726), 1, - anon_sym_RBRACE, - ACTIONS(3286), 1, + ACTIONS(762), 1, + anon_sym_RPAREN, + ACTIONS(3248), 1, anon_sym_COMMA, - STATE(2060), 1, + STATE(2074), 1, aux_sym_InitList_repeat2, - [70566] = 4, + [70784] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2322), 1, + STATE(2360), 1, sym_IDENTIFIER, - [70579] = 4, + [70797] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3032), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(3034), 1, anon_sym_AT, - STATE(2321), 1, + STATE(1662), 1, + sym_IDENTIFIER, + [70810] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2357), 1, sym_IDENTIFIER, - [70592] = 4, + [70823] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(754), 1, + anon_sym_RBRACE, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [70836] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(213), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, + aux_sym_IDENTIFIER_token1, + STATE(1032), 1, + sym_STRINGLITERALSINGLE, + [70849] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3250), 1, + anon_sym_COMMA, + ACTIONS(3252), 1, + anon_sym_RBRACE, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [70862] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2918), 1, + ACTIONS(3032), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2920), 1, + ACTIONS(3034), 1, anon_sym_AT, - STATE(1032), 1, + STATE(1699), 1, sym_IDENTIFIER, - [70605] = 4, + [70875] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3288), 1, + ACTIONS(3254), 1, anon_sym_COMMA, - ACTIONS(3290), 1, + ACTIONS(3257), 1, anon_sym_RBRACE, - STATE(2175), 1, - aux_sym_SwitchExpr_repeat1, - [70618] = 4, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [70888] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3028), 1, + ACTIONS(3259), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3030), 1, + ACTIONS(3261), 1, anon_sym_AT, - STATE(1690), 1, + STATE(53), 1, sym_IDENTIFIER, - [70631] = 4, + [70901] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2287), 1, - sym_IDENTIFIER, - [70644] = 4, + ACTIONS(724), 1, + anon_sym_RBRACE, + ACTIONS(3263), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [70914] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(616), 1, + ACTIONS(724), 1, anon_sym_RBRACE, - ACTIONS(3292), 1, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [70927] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3265), 1, anon_sym_COMMA, - STATE(2214), 1, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(2187), 1, aux_sym_SwitchExpr_repeat1, - [70657] = 4, + [70940] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3269), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(3271), 1, anon_sym_AT, - STATE(2332), 1, + STATE(360), 1, sym_IDENTIFIER, - [70670] = 4, + [70953] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(662), 1, - anon_sym_EQ_GT, - ACTIONS(3294), 1, - anon_sym_COMMA, - STATE(2140), 1, - aux_sym_SwitchCase_repeat1, - [70683] = 4, + ACTIONS(3010), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(3012), 1, + anon_sym_AT, + STATE(1689), 1, + sym_IDENTIFIER, + [70966] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3296), 1, - anon_sym_COMMA, - ACTIONS(3298), 1, + ACTIONS(590), 1, anon_sym_RBRACE, - STATE(2149), 1, - aux_sym_ErrorSetDecl_repeat1, - [70696] = 4, + ACTIONS(3273), 1, + anon_sym_COMMA, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [70979] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2199), 1, + ACTIONS(724), 1, anon_sym_RBRACE, - ACTIONS(3300), 1, + ACTIONS(3275), 1, anon_sym_COMMA, - STATE(2159), 1, + STATE(2199), 1, aux_sym_InitList_repeat1, - [70709] = 2, + [70992] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, + aux_sym_IDENTIFIER_token1, + ACTIONS(2914), 1, + anon_sym_AT, + STATE(2119), 1, + sym_IDENTIFIER, + [71005] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3066), 3, + ACTIONS(3277), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RPAREN, - [70718] = 4, + ACTIONS(3279), 1, + anon_sym_RBRACE, + STATE(2192), 1, + aux_sym_ErrorSetDecl_repeat1, + [71018] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2978), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2980), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1786), 1, + STATE(2314), 1, sym_IDENTIFIER, - [70731] = 4, + [71031] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3302), 1, + ACTIONS(3281), 1, anon_sym_COMMA, - ACTIONS(3304), 1, + ACTIONS(3283), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [70744] = 4, + [71044] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3010), 1, + ACTIONS(3014), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3012), 1, + ACTIONS(3016), 1, anon_sym_AT, - STATE(1258), 1, + STATE(1161), 1, sym_IDENTIFIER, - [70757] = 4, + [71057] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1019), 1, + STATE(2335), 1, sym_IDENTIFIER, - [70770] = 4, + [71070] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(916), 1, + anon_sym_DQUOTE, + ACTIONS(3089), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2325), 1, - sym_IDENTIFIER, - [70783] = 4, + STATE(1663), 1, + sym_STRINGLITERALSINGLE, + [71083] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(2141), 1, + STATE(2340), 1, sym_IDENTIFIER, - [70796] = 4, + [71096] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3285), 1, + anon_sym_COMMA, + ACTIONS(3287), 1, + anon_sym_RBRACE, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [71109] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(756), 1, + STATE(754), 1, sym_IDENTIFIER, - [70809] = 4, + [71122] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(728), 1, + ACTIONS(3289), 1, + anon_sym_COMMA, + ACTIONS(3292), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [70822] = 4, + STATE(2199), 1, + aux_sym_InitList_repeat1, + [71135] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3306), 1, + ACTIONS(688), 1, + anon_sym_EQ_GT, + ACTIONS(3294), 1, anon_sym_COMMA, - ACTIONS(3309), 1, - anon_sym_RBRACE, - STATE(2189), 1, - aux_sym_InitList_repeat1, - [70835] = 4, + STATE(2143), 1, + aux_sym_SwitchCase_repeat1, + [71148] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3010), 1, + ACTIONS(3014), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3012), 1, + ACTIONS(3016), 1, anon_sym_AT, - STATE(1067), 1, + STATE(1102), 1, sym_IDENTIFIER, - [70848] = 4, + [71161] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2918), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2920), 1, - anon_sym_AT, - STATE(1247), 1, - sym_IDENTIFIER, - [70861] = 4, + ACTIONS(738), 1, + anon_sym_RBRACE, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [71174] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, + ACTIONS(3004), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, + ACTIONS(3006), 1, anon_sym_AT, - STATE(2337), 1, + STATE(1253), 1, sym_IDENTIFIER, - [70874] = 2, + [71187] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3311), 3, + ACTIONS(608), 1, + anon_sym_RBRACE, + ACTIONS(3296), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RPAREN, - [70883] = 2, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [71200] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3313), 3, + ACTIONS(3298), 1, anon_sym_COMMA, - anon_sym_COLON, + ACTIONS(3301), 1, anon_sym_RPAREN, - [70892] = 4, + STATE(2205), 1, + aux_sym_AsmClobbers_repeat1, + [71213] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3010), 1, + ACTIONS(624), 1, + anon_sym_RBRACE, + ACTIONS(3303), 1, + anon_sym_COMMA, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [71226] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3012), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(1150), 1, + STATE(2347), 1, sym_IDENTIFIER, - [70905] = 4, + [71239] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3315), 1, + ACTIONS(3305), 1, anon_sym_COMMA, - ACTIONS(3317), 1, + ACTIONS(3307), 1, anon_sym_RBRACE, - STATE(2074), 1, + STATE(2210), 1, aux_sym_SwitchExpr_repeat1, - [70918] = 4, + [71252] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2334), 1, - sym_IDENTIFIER, - [70931] = 2, + ACTIONS(2243), 1, + anon_sym_RBRACE, + ACTIONS(3309), 1, + anon_sym_COMMA, + STATE(2217), 1, + aux_sym_InitList_repeat1, + [71265] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3319), 3, + ACTIONS(598), 1, + anon_sym_RBRACE, + ACTIONS(3311), 1, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RPAREN, - [70940] = 4, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [71278] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3321), 1, + ACTIONS(3313), 1, anon_sym_COMMA, - ACTIONS(3323), 1, + ACTIONS(3316), 1, anon_sym_RBRACE, - STATE(2138), 1, - aux_sym_ErrorSetDecl_repeat1, - [70953] = 4, + STATE(2211), 1, + aux_sym_SwitchExpr_repeat1, + [71291] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2231), 1, - anon_sym_RBRACE, - ACTIONS(3325), 1, + ACTIONS(3318), 1, anon_sym_COMMA, - STATE(2143), 1, - aux_sym_InitList_repeat1, - [70966] = 4, + ACTIONS(3320), 1, + anon_sym_RBRACE, + STATE(2222), 1, + aux_sym_ErrorSetDecl_repeat1, + [71304] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3327), 1, + ACTIONS(2912), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3329), 1, + ACTIONS(2914), 1, anon_sym_AT, - STATE(73), 1, + STATE(1952), 1, sym_IDENTIFIER, - [70979] = 4, + [71317] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3331), 1, + ACTIONS(3322), 1, anon_sym_COMMA, - ACTIONS(3333), 1, + ACTIONS(3324), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2197), 1, aux_sym_ErrorSetDecl_repeat1, - [70992] = 4, + [71330] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2377), 1, - sym_IDENTIFIER, - [71005] = 4, + ACTIONS(712), 1, + anon_sym_RBRACE, + ACTIONS(3326), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [71343] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(718), 1, + ACTIONS(712), 1, anon_sym_RBRACE, - ACTIONS(3109), 1, + ACTIONS(3099), 1, anon_sym_DOT, STATE(2261), 1, sym_FieldInit, - [71018] = 4, + [71356] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2978), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2980), 1, - anon_sym_AT, - STATE(1725), 1, - sym_IDENTIFIER, - [71031] = 4, + ACTIONS(712), 1, + anon_sym_RBRACE, + ACTIONS(3328), 1, + anon_sym_COMMA, + STATE(2199), 1, + aux_sym_InitList_repeat1, + [71369] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2231), 1, - sym_IDENTIFIER, - [71044] = 4, + ACTIONS(3330), 1, + anon_sym_COMMA, + ACTIONS(3332), 1, + anon_sym_RBRACE, + STATE(2227), 1, + aux_sym_ErrorSetDecl_repeat1, + [71382] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2237), 1, - sym_IDENTIFIER, - [71057] = 4, + ACTIONS(3334), 1, + anon_sym_COMMA, + ACTIONS(3336), 1, + anon_sym_RBRACE, + STATE(2206), 1, + aux_sym_SwitchExpr_repeat1, + [71395] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3335), 1, + ACTIONS(3338), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3337), 1, + ACTIONS(3340), 1, anon_sym_AT, STATE(370), 1, sym_IDENTIFIER, - [71070] = 4, + [71408] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3028), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(3030), 1, - anon_sym_AT, - STATE(1682), 1, - sym_IDENTIFIER, - [71083] = 4, + ACTIONS(766), 1, + anon_sym_RPAREN, + ACTIONS(3342), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [71421] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2405), 1, + ACTIONS(3344), 1, + anon_sym_COMMA, + ACTIONS(3346), 1, + anon_sym_RBRACE, + STATE(2180), 1, + aux_sym_ErrorSetDecl_repeat1, + [71434] = 4, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(746), 1, anon_sym_RPAREN, - ACTIONS(3339), 1, - anon_sym_LBRACE, - ACTIONS(3341), 1, - anon_sym_LPAREN, - [71096] = 4, + ACTIONS(3348), 1, + anon_sym_COMMA, + STATE(2074), 1, + aux_sym_InitList_repeat2, + [71447] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3343), 1, + ACTIONS(3350), 1, anon_sym_COMMA, - ACTIONS(3345), 1, + ACTIONS(3353), 1, anon_sym_RPAREN, - STATE(2089), 1, - aux_sym_AsmClobbers_repeat1, - [71109] = 4, + STATE(2224), 1, + aux_sym_ParamDeclList_repeat1, + [71460] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3347), 1, + ACTIONS(3355), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(3349), 1, + ACTIONS(3357), 1, anon_sym_AT, - STATE(56), 1, + STATE(365), 1, sym_IDENTIFIER, - [71122] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3351), 1, - anon_sym_COMMA, - ACTIONS(3353), 1, - anon_sym_RBRACE, - STATE(2182), 1, - aux_sym_ErrorSetDecl_repeat1, - [71135] = 4, + [71473] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3355), 1, - anon_sym_COMMA, - ACTIONS(3358), 1, + ACTIONS(752), 1, anon_sym_RBRACE, - STATE(2214), 1, - aux_sym_SwitchExpr_repeat1, - [71148] = 4, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [71486] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3360), 1, + ACTIONS(3359), 1, anon_sym_COMMA, - ACTIONS(3363), 1, + ACTIONS(3361), 1, anon_sym_RBRACE, - STATE(2215), 1, + STATE(2180), 1, aux_sym_ErrorSetDecl_repeat1, - [71161] = 4, + [71499] = 4, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2928), 1, + ACTIONS(2926), 1, aux_sym_IDENTIFIER_token1, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_AT, - STATE(1614), 1, + STATE(1618), 1, sym_IDENTIFIER, - [71174] = 4, + [71512] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2241), 1, - anon_sym_RBRACE, - ACTIONS(3365), 1, + ACTIONS(3363), 1, anon_sym_COMMA, - STATE(2131), 1, - aux_sym_InitList_repeat1, - [71187] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(3141), 1, - aux_sym_IDENTIFIER_token1, - STATE(1038), 1, - sym_STRINGLITERALSINGLE, - [71200] = 4, + ACTIONS(3365), 1, + anon_sym_PIPE, + [71522] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(171), 1, + ACTIONS(3367), 1, anon_sym_DQUOTE, - ACTIONS(3141), 1, - aux_sym_IDENTIFIER_token1, - STATE(991), 1, + STATE(351), 1, sym_STRINGLITERALSINGLE, - [71213] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(2324), 1, - sym_IDENTIFIER, - [71226] = 4, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3367), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(3369), 1, - anon_sym_AT, - STATE(365), 1, - sym_IDENTIFIER, - [71239] = 4, + [71532] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2936), 1, - aux_sym_IDENTIFIER_token1, - ACTIONS(2938), 1, - anon_sym_AT, - STATE(832), 1, - sym_IDENTIFIER, - [71252] = 2, + ACTIONS(3099), 1, + anon_sym_DOT, + STATE(2261), 1, + sym_FieldInit, + [71542] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3371), 2, + ACTIONS(3369), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71260] = 2, + [71550] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3224), 2, + ACTIONS(3190), 2, anon_sym_COMMA, anon_sym_EQ_GT, - [71268] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(385), 1, - sym_ParamDeclList, - [71278] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3373), 1, - anon_sym_DQUOTE, - STATE(368), 1, - sym_STRINGLITERALSINGLE, - [71288] = 3, + [71558] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3375), 1, + ACTIONS(261), 1, anon_sym_DQUOTE, - STATE(352), 1, + STATE(1341), 1, sym_STRINGLITERALSINGLE, - [71298] = 2, + [71568] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3160), 2, + ACTIONS(3353), 2, anon_sym_COMMA, anon_sym_RPAREN, - [71306] = 2, + [71576] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2371), 1, + anon_sym_SEMI, + ACTIONS(3061), 1, + anon_sym_EQ, + [71586] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3358), 2, + ACTIONS(3371), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [71314] = 3, + anon_sym_RPAREN, + [71594] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3377), 1, + ACTIONS(3373), 1, anon_sym_DQUOTE, - STATE(363), 1, + STATE(368), 1, sym_STRINGLITERALSINGLE, - [71324] = 2, + [71604] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3379), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71332] = 3, + ACTIONS(3375), 1, + anon_sym_PIPE, + STATE(1416), 1, + sym_PtrIndexPayload, + [71614] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2732), 1, - anon_sym_fn, - STATE(2129), 1, - sym_FnProto, - [71342] = 3, + ACTIONS(3377), 1, + anon_sym_COMMA, + ACTIONS(3379), 1, + anon_sym_PIPE, + [71624] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3381), 1, + ACTIONS(171), 1, anon_sym_DQUOTE, - STATE(83), 1, + STATE(1026), 1, sym_STRINGLITERALSINGLE, - [71352] = 3, + [71634] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(171), 1, + ACTIONS(3381), 1, anon_sym_DQUOTE, - STATE(991), 1, + STATE(363), 1, sym_STRINGLITERALSINGLE, - [71362] = 2, + [71644] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3383), 2, anon_sym_COMMA, anon_sym_RBRACE, - [71370] = 3, + [71652] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(378), 1, - sym_ParamDeclList, - [71380] = 3, + ACTIONS(2724), 1, + anon_sym_fn, + STATE(2132), 1, + sym_FnProto, + [71662] = 3, ACTIONS(95), 1, sym_line_comment, + ACTIONS(2357), 1, + anon_sym_SEMI, ACTIONS(3385), 1, - anon_sym_COMMA, - ACTIONS(3387), 1, - anon_sym_PIPE, - [71390] = 3, + anon_sym_EQ, + [71672] = 3, ACTIONS(95), 1, sym_line_comment, + ACTIONS(3387), 1, + anon_sym_LPAREN, ACTIONS(3389), 1, - anon_sym_LBRACE, - ACTIONS(3391), 1, - anon_sym_RPAREN, - [71400] = 3, + anon_sym_volatile, + [71682] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2437), 1, + ACTIONS(3391), 1, anon_sym_LPAREN, - STATE(1709), 1, - sym_FnCallArguments, - [71410] = 3, + ACTIONS(3393), 1, + anon_sym_volatile, + [71692] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2425), 1, + anon_sym_SEMI, + ACTIONS(3075), 1, + anon_sym_EQ, + [71702] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3393), 1, - anon_sym_LBRACE, ACTIONS(3395), 1, - anon_sym_DOT, - [71420] = 3, + anon_sym_PIPE, + STATE(1125), 1, + sym_PtrIndexPayload, + [71712] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(3397), 1, anon_sym_LPAREN, ACTIONS(3399), 1, anon_sym_volatile, - [71430] = 3, - ACTIONS(3), 1, - sym_line_comment, - ACTIONS(3401), 1, - aux_sym_CHAR_LITERAL_token1, - ACTIONS(3403), 1, - sym_EscapeSequence, - [71440] = 2, + [71722] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3405), 2, + ACTIONS(3301), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [71448] = 3, + anon_sym_RPAREN, + [71730] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2944), 1, - anon_sym_LBRACK, - STATE(2087), 1, - sym_AsmInputItem, - [71458] = 3, + ACTIONS(3401), 1, + anon_sym_LBRACE, + ACTIONS(3403), 1, + anon_sym_DOT, + [71740] = 3, ACTIONS(95), 1, sym_line_comment, + ACTIONS(3405), 1, + anon_sym_LBRACE, ACTIONS(3407), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, + [71750] = 3, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(3409), 1, - anon_sym_volatile, - [71468] = 3, + aux_sym_CHAR_LITERAL_token1, + ACTIONS(3411), 1, + sym_EscapeSequence, + [71760] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3411), 1, + ACTIONS(2355), 1, + anon_sym_SEMI, + ACTIONS(3413), 1, + anon_sym_EQ, + [71770] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3415), 1, anon_sym_DQUOTE, STATE(356), 1, sym_STRINGLITERALSINGLE, - [71478] = 3, + [71780] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - STATE(379), 1, + STATE(393), 1, sym_ParamDeclList, - [71488] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1649), 1, - anon_sym_LPAREN, - STATE(1054), 1, - sym_FnCallArguments, - [71498] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(213), 1, - anon_sym_DQUOTE, - STATE(1038), 1, - sym_STRINGLITERALSINGLE, - [71508] = 2, + [71790] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3413), 2, + ACTIONS(3316), 2, anon_sym_COMMA, anon_sym_RBRACE, - [71516] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3415), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71524] = 3, + [71798] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3417), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_volatile, - [71534] = 3, + STATE(374), 1, + sym_ParamDeclList, + [71808] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3421), 1, + ACTIONS(3417), 1, aux_sym_CHAR_LITERAL_token1, - ACTIONS(3423), 1, - sym_EscapeSequence, - [71544] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(372), 1, - sym_ParamDeclList, - [71554] = 3, + ACTIONS(3419), 1, + sym_EscapeSequence, + [71818] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(377), 1, - sym_ParamDeclList, - [71564] = 3, + ACTIONS(3292), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [71826] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3425), 1, + ACTIONS(3421), 1, anon_sym_LBRACE, - ACTIONS(3427), 1, + ACTIONS(3423), 1, anon_sym_DOT, - [71574] = 3, + [71836] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(1018), 1, + anon_sym_DQUOTE, + STATE(1745), 1, + sym_STRINGLITERALSINGLE, + [71846] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3425), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71854] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2910), 1, anon_sym_LPAREN, - STATE(394), 1, + STATE(380), 1, sym_ParamDeclList, - [71584] = 3, + [71864] = 3, ACTIONS(95), 1, sym_line_comment, + ACTIONS(1759), 1, + anon_sym_LPAREN, + STATE(1133), 1, + sym_FnCallArguments, + [71874] = 3, + ACTIONS(3), 1, + sym_line_comment, + ACTIONS(3427), 1, + aux_sym_CHAR_LITERAL_token1, ACTIONS(3429), 1, - anon_sym_COMMA, + sym_EscapeSequence, + [71884] = 3, + ACTIONS(95), 1, + sym_line_comment, ACTIONS(3431), 1, + anon_sym_COMMA, + ACTIONS(3433), 1, anon_sym_PIPE, - [71594] = 3, + [71894] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2610), 1, - anon_sym_DQUOTE, - STATE(1872), 1, - sym_STRINGLITERALSINGLE, - [71604] = 3, + ACTIONS(1651), 1, + anon_sym_LPAREN, + STATE(1108), 1, + sym_FnCallArguments, + [71904] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(916), 1, anon_sym_DQUOTE, - STATE(1718), 1, + STATE(1663), 1, sym_STRINGLITERALSINGLE, - [71614] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3309), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [71622] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2359), 1, - anon_sym_SEMI, - ACTIONS(3433), 1, - anon_sym_EQ, - [71632] = 3, + [71914] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(2433), 1, anon_sym_LPAREN, - STATE(374), 1, - sym_ParamDeclList, - [71642] = 3, - ACTIONS(3), 1, + STATE(1696), 1, + sym_FnCallArguments, + [71924] = 3, + ACTIONS(95), 1, sym_line_comment, ACTIONS(3435), 1, - aux_sym_CHAR_LITERAL_token1, + anon_sym_LBRACE, ACTIONS(3437), 1, - sym_EscapeSequence, - [71652] = 3, + anon_sym_DOT, + [71934] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2427), 1, - anon_sym_SEMI, - ACTIONS(3054), 1, - anon_sym_EQ, - [71662] = 3, + ACTIONS(2910), 1, + anon_sym_LPAREN, + STATE(373), 1, + sym_ParamDeclList, + [71944] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3439), 1, - anon_sym_PIPE, - STATE(1143), 1, - sym_PtrIndexPayload, - [71672] = 3, + ACTIONS(3439), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [71952] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2363), 1, - anon_sym_SEMI, - ACTIONS(3087), 1, - anon_sym_EQ, - [71682] = 3, + ACTIONS(2948), 1, + anon_sym_LBRACK, + STATE(2127), 1, + sym_AsmOutputItem, + [71962] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(105), 1, anon_sym_DQUOTE, - STATE(771), 1, + STATE(811), 1, sym_STRINGLITERALSINGLE, - [71692] = 3, + [71972] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(982), 1, - anon_sym_DQUOTE, - STATE(1669), 1, - sym_STRINGLITERALSINGLE, - [71702] = 3, + ACTIONS(2910), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym_ParamDeclList, + [71982] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3441), 1, - anon_sym_LBRACE, - ACTIONS(3443), 1, - anon_sym_DOT, - [71712] = 3, + ACTIONS(3441), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [71990] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2355), 1, + ACTIONS(2756), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [71998] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3052), 1, anon_sym_SEMI, - ACTIONS(3445), 1, + ACTIONS(3054), 1, anon_sym_EQ, - [71722] = 3, + [72008] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3447), 1, + ACTIONS(3443), 1, anon_sym_COMMA, - ACTIONS(3449), 1, + ACTIONS(3445), 1, anon_sym_PIPE, - [71732] = 3, + [72018] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3109), 1, - anon_sym_DOT, - STATE(2261), 1, - sym_FieldInit, - [71742] = 3, + ACTIONS(3447), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72026] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - STATE(376), 1, + STATE(377), 1, sym_ParamDeclList, - [71752] = 3, + [72036] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2429), 1, - anon_sym_SEMI, - ACTIONS(2898), 1, - anon_sym_EQ, - [71762] = 3, + ACTIONS(3449), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72044] = 3, ACTIONS(3), 1, sym_line_comment, ACTIONS(3451), 1, aux_sym_CHAR_LITERAL_token1, ACTIONS(3453), 1, sym_EscapeSequence, - [71772] = 2, + [72054] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2764), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71780] = 3, + ACTIONS(2441), 1, + anon_sym_LPAREN, + STATE(1813), 1, + sym_FnCallArguments, + [72064] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(3455), 1, anon_sym_DQUOTE, - STATE(64), 1, + STATE(83), 1, sym_STRINGLITERALSINGLE, - [71790] = 2, + [72074] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3457), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71798] = 3, + ACTIONS(3457), 1, + anon_sym_LBRACE, + ACTIONS(3459), 1, + anon_sym_DOT, + [72084] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1749), 1, - anon_sym_LPAREN, - STATE(1158), 1, - sym_FnCallArguments, - [71808] = 3, + ACTIONS(2758), 1, + anon_sym_LBRACE, + STATE(1899), 1, + sym_Block, + [72094] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2389), 1, + ACTIONS(2423), 1, anon_sym_SEMI, - ACTIONS(2850), 1, + ACTIONS(2890), 1, anon_sym_EQ, - [71818] = 3, + [72104] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, + ACTIONS(213), 1, + anon_sym_DQUOTE, + STATE(1032), 1, + sym_STRINGLITERALSINGLE, + [72114] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2758), 1, anon_sym_LBRACE, - STATE(1892), 1, + STATE(1904), 1, sym_Block, - [71828] = 2, + [72124] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3459), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71836] = 3, + ACTIONS(2910), 1, + anon_sym_LPAREN, + STATE(394), 1, + sym_ParamDeclList, + [72134] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(3461), 1, + anon_sym_DQUOTE, + STATE(52), 1, + sym_STRINGLITERALSINGLE, + [72144] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2910), 1, anon_sym_LPAREN, - STATE(383), 1, + STATE(382), 1, sym_ParamDeclList, - [71846] = 3, + [72154] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(1202), 1, + ACTIONS(1204), 1, anon_sym_LPAREN, - STATE(796), 1, + STATE(799), 1, sym_FnCallArguments, - [71856] = 3, + [72164] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - STATE(1883), 1, - sym_Block, - [71866] = 3, + ACTIONS(2317), 1, + anon_sym_SEMI, + ACTIONS(2810), 1, + anon_sym_EQ, + [72174] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3461), 1, - anon_sym_COMMA, + ACTIONS(2910), 1, + anon_sym_LPAREN, + STATE(371), 1, + sym_ParamDeclList, + [72184] = 3, + ACTIONS(3), 1, + sym_line_comment, ACTIONS(3463), 1, - anon_sym_PIPE, - [71876] = 3, + aux_sym_CHAR_LITERAL_token1, + ACTIONS(3465), 1, + sym_EscapeSequence, + [72194] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3059), 1, - anon_sym_SEMI, - ACTIONS(3061), 1, - anon_sym_EQ, - [71886] = 3, + ACTIONS(2952), 1, + anon_sym_LBRACK, + STATE(2099), 1, + sym_AsmInputItem, + [72204] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3078), 1, - anon_sym_SEMI, - ACTIONS(3080), 1, - anon_sym_EQ, - [71896] = 2, + ACTIONS(2758), 1, + anon_sym_LBRACE, + STATE(1907), 1, + sym_Block, + [72214] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3465), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [71904] = 3, + ACTIONS(3467), 1, + anon_sym_LBRACE, + ACTIONS(3469), 1, + anon_sym_DOT, + [72224] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - STATE(1897), 1, - sym_Block, - [71914] = 3, + ACTIONS(3471), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [72232] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2950), 1, + ACTIONS(2910), 1, anon_sym_LPAREN, - STATE(371), 1, + STATE(390), 1, sym_ParamDeclList, - [71924] = 3, + [72242] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2445), 1, - anon_sym_LPAREN, - STATE(1776), 1, - sym_FnCallArguments, - [71934] = 3, - ACTIONS(3), 1, + ACTIONS(3077), 1, + anon_sym_SEMI, + ACTIONS(3079), 1, + anon_sym_EQ, + [72252] = 3, + ACTIONS(95), 1, sym_line_comment, - ACTIONS(3467), 1, - aux_sym_CHAR_LITERAL_token1, - ACTIONS(3469), 1, - sym_EscapeSequence, - [71944] = 3, + ACTIONS(2910), 1, + anon_sym_LPAREN, + STATE(383), 1, + sym_ParamDeclList, + [72262] = 3, ACTIONS(3), 1, sym_line_comment, - ACTIONS(3471), 1, - aux_sym_CHAR_LITERAL_token1, ACTIONS(3473), 1, + aux_sym_CHAR_LITERAL_token1, + ACTIONS(3475), 1, sym_EscapeSequence, - [71954] = 3, + [72272] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3339), 1, + ACTIONS(3153), 1, anon_sym_LBRACE, - ACTIONS(3475), 1, + ACTIONS(3477), 1, anon_sym_LPAREN, - [71964] = 3, + [72282] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3339), 1, + ACTIONS(3153), 1, anon_sym_LBRACE, - ACTIONS(3477), 1, + ACTIONS(3479), 1, anon_sym_LPAREN, - [71974] = 3, + [72292] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2060), 1, + ACTIONS(2586), 1, + anon_sym_DQUOTE, + STATE(1873), 1, + sym_STRINGLITERALSINGLE, + [72302] = 3, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2033), 1, anon_sym_LPAREN, - STATE(1382), 1, + STATE(1366), 1, sym_FnCallArguments, - [71984] = 3, + [72312] = 3, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3479), 1, - anon_sym_LBRACE, ACTIONS(3481), 1, - anon_sym_DOT, - [71994] = 3, - ACTIONS(95), 1, - sym_line_comment, + anon_sym_LBRACE, ACTIONS(3483), 1, - anon_sym_PIPE, - STATE(1389), 1, - sym_PtrIndexPayload, - [72004] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2950), 1, - anon_sym_LPAREN, - STATE(391), 1, - sym_ParamDeclList, - [72014] = 3, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(261), 1, - anon_sym_DQUOTE, - STATE(1355), 1, - sym_STRINGLITERALSINGLE, - [72024] = 3, + anon_sym_DOT, + [72322] = 3, ACTIONS(95), 1, sym_line_comment, ACTIONS(3485), 1, - anon_sym_LBRACE, + anon_sym_LPAREN, ACTIONS(3487), 1, - anon_sym_DOT, - [72034] = 3, + anon_sym_volatile, + [72332] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2988), 1, - anon_sym_LBRACK, - STATE(2180), 1, - sym_AsmOutputItem, - [72044] = 3, + ACTIONS(3489), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [72340] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3489), 1, - anon_sym_LPAREN, ACTIONS(3491), 1, - anon_sym_volatile, - [72054] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3213), 2, - anon_sym_COMMA, anon_sym_RPAREN, - [72062] = 3, - ACTIONS(95), 1, + [72347] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3493), 1, - anon_sym_LBRACE, + aux_sym_LINESTRING_token1, + [72354] = 2, + ACTIONS(95), 1, + sym_line_comment, ACTIONS(3495), 1, - anon_sym_DOT, - [72072] = 2, + anon_sym_LPAREN, + [72361] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3497), 2, - anon_sym_COMMA, + ACTIONS(3497), 1, + anon_sym_LPAREN, + [72368] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2205), 1, anon_sym_RPAREN, - [72080] = 2, + [72375] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3499), 1, anon_sym_LPAREN, - [72087] = 2, + [72382] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2215), 1, + anon_sym_RPAREN, + [72389] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3501), 1, - anon_sym_PIPE, - [72094] = 2, + anon_sym_LPAREN, + [72396] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3503), 1, - anon_sym_LPAREN, - [72101] = 2, + anon_sym_LBRACE, + [72403] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2185), 1, + ACTIONS(2938), 1, anon_sym_RPAREN, - [72108] = 2, - ACTIONS(95), 1, + [72410] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3505), 1, - anon_sym_LPAREN, - [72115] = 2, + aux_sym_LINESTRING_token1, + [72417] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3507), 1, anon_sym_LPAREN, - [72122] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3280), 1, - anon_sym_EQ_GT, - [72129] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2223), 1, - anon_sym_RPAREN, - [72136] = 2, + [72424] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3339), 1, - anon_sym_LBRACE, - [72143] = 2, + ACTIONS(1293), 1, + anon_sym_DASH_GT, + [72431] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3509), 1, - anon_sym_COLON, - [72150] = 2, + anon_sym_RPAREN, + [72438] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3511), 1, - anon_sym_LBRACE, - [72157] = 2, + anon_sym_RPAREN, + [72445] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3513), 1, - anon_sym_LBRACE, - [72164] = 2, - ACTIONS(95), 1, + anon_sym_SQUOTE, + [72452] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3515), 1, - anon_sym_RBRACK, - [72171] = 2, + aux_sym_LINESTRING_token1, + [72459] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3517), 1, - anon_sym_PIPE, - [72178] = 2, - ACTIONS(95), 1, + anon_sym_LBRACE, + [72466] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3519), 1, - anon_sym_SQUOTE, - [72185] = 2, + aux_sym_LINESTRING_token1, + [72473] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3521), 1, - anon_sym_RBRACK, - [72192] = 2, + anon_sym_LBRACE, + [72480] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3523), 1, - anon_sym_EQ, - [72199] = 2, + anon_sym_PIPE, + [72487] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3008), 1, + ACTIONS(3525), 1, anon_sym_RPAREN, - [72206] = 2, + [72494] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3525), 1, - anon_sym_LBRACE, - [72213] = 2, + ACTIONS(3177), 1, + anon_sym_EQ_GT, + [72501] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3527), 1, - anon_sym_LPAREN, - [72220] = 2, + anon_sym_PIPE, + [72508] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2998), 1, + anon_sym_RPAREN, + [72515] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3529), 1, + anon_sym_PIPE, + [72522] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2934), 1, anon_sym_RPAREN, - [72227] = 2, + [72529] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3531), 1, anon_sym_LBRACE, - [72234] = 2, + [72536] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3533), 1, anon_sym_RPAREN, - [72241] = 2, + [72543] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3535), 1, - anon_sym_PIPE, - [72248] = 2, + anon_sym_SEMI, + [72550] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3537), 1, - anon_sym_EQ_GT, - [72255] = 2, + anon_sym_LBRACE, + [72557] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3539), 1, - anon_sym_PIPE, - [72262] = 2, + anon_sym_RBRACK, + [72564] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3541), 1, - anon_sym_RBRACK, - [72269] = 2, + anon_sym_EQ, + [72571] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3543), 1, - anon_sym_SQUOTE, - [72276] = 2, + anon_sym_PIPE, + [72578] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3020), 1, + anon_sym_RPAREN, + [72585] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2946), 1, + anon_sym_RPAREN, + [72592] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3545), 1, - anon_sym_PIPE, - [72283] = 2, + anon_sym_LBRACE, + [72599] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3547), 1, - anon_sym_LPAREN, - [72290] = 2, + anon_sym_SQUOTE, + [72606] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3549), 1, - anon_sym_LPAREN, - [72297] = 2, + anon_sym_PIPE, + [72613] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3551), 1, anon_sym_PIPE, - [72304] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2974), 1, - anon_sym_RPAREN, - [72311] = 2, - ACTIONS(95), 1, + [72620] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3553), 1, - anon_sym_LBRACE, - [72318] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2942), 1, - anon_sym_RPAREN, - [72325] = 2, + aux_sym_LINESTRING_token1, + [72627] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3555), 1, - anon_sym_PIPE, - [72332] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3389), 1, - anon_sym_LBRACE, - [72339] = 2, + anon_sym_SQUOTE, + [72634] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3557), 1, - anon_sym_SEMI, - [72346] = 2, + anon_sym_RBRACK, + [72641] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3559), 1, - anon_sym_LBRACE, - [72353] = 2, + anon_sym_RPAREN, + [72648] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3561), 1, - anon_sym_RPAREN, - [72360] = 2, + anon_sym_LBRACE, + [72655] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3563), 1, anon_sym_PIPE, - [72367] = 2, + [72662] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3565), 1, anon_sym_LPAREN, - [72374] = 2, + [72669] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3002), 1, - anon_sym_RPAREN, - [72381] = 2, + ACTIONS(3567), 1, + anon_sym_EQ_GT, + [72676] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(3567), 1, + ACTIONS(3153), 1, anon_sym_LBRACE, - [72388] = 2, + [72683] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3569), 1, - anon_sym_SQUOTE, - [72395] = 2, + anon_sym_LPAREN, + [72690] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3571), 1, - anon_sym_RPAREN, - [72402] = 2, + anon_sym_SEMI, + [72697] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3573), 1, anon_sym_LBRACE, - [72409] = 2, + [72704] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3575), 1, - anon_sym_LPAREN, - [72416] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2986), 1, - anon_sym_RPAREN, - [72423] = 2, + anon_sym_SQUOTE, + [72711] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3577), 1, - anon_sym_LBRACE, - [72430] = 2, + anon_sym_RPAREN, + [72718] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3579), 1, - ts_builtin_sym_end, - [72437] = 2, + anon_sym_PIPE, + [72725] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3581), 1, - anon_sym_SQUOTE, - [72444] = 2, + anon_sym_LBRACE, + [72732] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3583), 1, - anon_sym_SEMI, - [72451] = 2, + ts_builtin_sym_end, + [72739] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3585), 1, + anon_sym_LBRACE, + [72746] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2253), 1, anon_sym_RPAREN, - [72458] = 2, + [72753] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3587), 1, - anon_sym_RPAREN, - [72465] = 2, + anon_sym_PIPE, + [72760] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3589), 1, - anon_sym_LBRACE, - [72472] = 2, + anon_sym_LPAREN, + [72767] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3591), 1, - anon_sym_LPAREN, - [72479] = 2, + anon_sym_LBRACE, + [72774] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3593), 1, - anon_sym_RPAREN, - [72486] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(3595), 1, anon_sym_LBRACE, - [72493] = 2, + [72781] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2255), 1, - anon_sym_RPAREN, - [72500] = 2, + ACTIONS(3595), 1, + anon_sym_RBRACK, + [72788] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3597), 1, anon_sym_LBRACE, - [72507] = 2, + [72795] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3599), 1, - anon_sym_LBRACE, - [72514] = 2, + anon_sym_PIPE, + [72802] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3601), 1, - anon_sym_RPAREN, - [72521] = 2, + anon_sym_COLON, + [72809] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3603), 1, - anon_sym_LPAREN, - [72528] = 2, + anon_sym_LBRACE, + [72816] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3605), 1, - anon_sym_LPAREN, - [72535] = 2, + anon_sym_PIPE, + [72823] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3607), 1, anon_sym_LPAREN, - [72542] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(1292), 1, - anon_sym_DASH_GT, - [72549] = 2, + [72830] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3609), 1, anon_sym_LPAREN, - [72556] = 2, + [72837] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3611), 1, - anon_sym_PIPE, - [72563] = 2, + anon_sym_LPAREN, + [72844] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3613), 1, - anon_sym_LPAREN, - [72570] = 2, + anon_sym_SQUOTE, + [72851] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3615), 1, - anon_sym_LBRACE, - [72577] = 2, + anon_sym_LPAREN, + [72858] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3617), 1, - anon_sym_LPAREN, - [72584] = 2, + anon_sym_RPAREN, + [72865] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3619), 1, anon_sym_LPAREN, - [72591] = 2, + [72872] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3405), 1, + anon_sym_LBRACE, + [72879] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3621), 1, - anon_sym_RPAREN, - [72598] = 2, + anon_sym_LPAREN, + [72886] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3623), 1, - anon_sym_PIPE, - [72605] = 2, + anon_sym_LPAREN, + [72893] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(2958), 1, + anon_sym_RPAREN, + [72900] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3625), 1, anon_sym_LPAREN, - [72612] = 2, + [72907] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3627), 1, - anon_sym_PIPE, - [72619] = 2, + anon_sym_LPAREN, + [72914] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3629), 1, anon_sym_SQUOTE, - [72626] = 2, + [72921] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3631), 1, - anon_sym_LPAREN, - [72633] = 2, + anon_sym_RPAREN, + [72928] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3633), 1, anon_sym_LPAREN, - [72640] = 2, + [72935] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3635), 1, - anon_sym_LPAREN, - [72647] = 2, + anon_sym_RPAREN, + [72942] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3637), 1, - anon_sym_SQUOTE, - [72654] = 2, - ACTIONS(95), 1, + anon_sym_LPAREN, + [72949] = 2, + ACTIONS(3), 1, sym_line_comment, ACTIONS(3639), 1, - anon_sym_RPAREN, - [72661] = 2, + aux_sym_LINESTRING_token1, + [72956] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3641), 1, - anon_sym_RPAREN, - [72668] = 2, - ACTIONS(95), 1, - sym_line_comment, - ACTIONS(2926), 1, - anon_sym_RPAREN, - [72675] = 2, + anon_sym_LPAREN, + [72963] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3643), 1, anon_sym_LPAREN, - [72682] = 2, + [72970] = 2, ACTIONS(95), 1, sym_line_comment, - ACTIONS(2233), 1, + ACTIONS(2251), 1, anon_sym_RPAREN, - [72689] = 2, + [72977] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3645), 1, anon_sym_LPAREN, - [72696] = 2, + [72984] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3647), 1, - anon_sym_LPAREN, - [72703] = 2, + anon_sym_RPAREN, + [72991] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3649), 1, anon_sym_LPAREN, - [72710] = 2, + [72998] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3651), 1, anon_sym_LPAREN, - [72717] = 2, + [73005] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3653), 1, anon_sym_LPAREN, - [72724] = 2, + [73012] = 2, ACTIONS(95), 1, sym_line_comment, ACTIONS(3655), 1, anon_sym_LPAREN, + [73019] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3657), 1, + anon_sym_LPAREN, + [73026] = 2, + ACTIONS(95), 1, + sym_line_comment, + ACTIONS(3659), 1, + anon_sym_LPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(840)] = 0, - [SMALL_STATE(841)] = 75, - [SMALL_STATE(842)] = 150, - [SMALL_STATE(843)] = 225, - [SMALL_STATE(844)] = 331, - [SMALL_STATE(845)] = 439, - [SMALL_STATE(846)] = 545, - [SMALL_STATE(847)] = 681, - [SMALL_STATE(848)] = 817, - [SMALL_STATE(849)] = 953, - [SMALL_STATE(850)] = 1089, - [SMALL_STATE(851)] = 1195, - [SMALL_STATE(852)] = 1331, - [SMALL_STATE(853)] = 1467, - [SMALL_STATE(854)] = 1603, - [SMALL_STATE(855)] = 1739, - [SMALL_STATE(856)] = 1875, - [SMALL_STATE(857)] = 2011, - [SMALL_STATE(858)] = 2119, - [SMALL_STATE(859)] = 2255, - [SMALL_STATE(860)] = 2363, - [SMALL_STATE(861)] = 2499, - [SMALL_STATE(862)] = 2635, - [SMALL_STATE(863)] = 2771, - [SMALL_STATE(864)] = 2907, - [SMALL_STATE(865)] = 3043, - [SMALL_STATE(866)] = 3179, - [SMALL_STATE(867)] = 3315, - [SMALL_STATE(868)] = 3451, - [SMALL_STATE(869)] = 3536, - [SMALL_STATE(870)] = 3605, - [SMALL_STATE(871)] = 3674, - [SMALL_STATE(872)] = 3743, - [SMALL_STATE(873)] = 3812, - [SMALL_STATE(874)] = 3881, - [SMALL_STATE(875)] = 3950, - [SMALL_STATE(876)] = 4019, - [SMALL_STATE(877)] = 4122, - [SMALL_STATE(878)] = 4191, - [SMALL_STATE(879)] = 4270, - [SMALL_STATE(880)] = 4353, - [SMALL_STATE(881)] = 4440, - [SMALL_STATE(882)] = 4529, - [SMALL_STATE(883)] = 4632, - [SMALL_STATE(884)] = 4727, - [SMALL_STATE(885)] = 4826, - [SMALL_STATE(886)] = 4905, - [SMALL_STATE(887)] = 5008, - [SMALL_STATE(888)] = 5093, - [SMALL_STATE(889)] = 5162, - [SMALL_STATE(890)] = 5231, - [SMALL_STATE(891)] = 5300, - [SMALL_STATE(892)] = 5369, - [SMALL_STATE(893)] = 5438, - [SMALL_STATE(894)] = 5507, - [SMALL_STATE(895)] = 5608, - [SMALL_STATE(896)] = 5693, - [SMALL_STATE(897)] = 5778, - [SMALL_STATE(898)] = 5847, - [SMALL_STATE(899)] = 5916, - [SMALL_STATE(900)] = 6019, - [SMALL_STATE(901)] = 6088, - [SMALL_STATE(902)] = 6157, - [SMALL_STATE(903)] = 6226, - [SMALL_STATE(904)] = 6295, - [SMALL_STATE(905)] = 6364, - [SMALL_STATE(906)] = 6448, - [SMALL_STATE(907)] = 6532, - [SMALL_STATE(908)] = 6600, - [SMALL_STATE(909)] = 6678, - [SMALL_STATE(910)] = 6760, - [SMALL_STATE(911)] = 6842, - [SMALL_STATE(912)] = 6926, - [SMALL_STATE(913)] = 7028, - [SMALL_STATE(914)] = 7114, - [SMALL_STATE(915)] = 7202, - [SMALL_STATE(916)] = 7296, - [SMALL_STATE(917)] = 7398, - [SMALL_STATE(918)] = 7500, - [SMALL_STATE(919)] = 7582, - [SMALL_STATE(920)] = 7666, - [SMALL_STATE(921)] = 7744, - [SMALL_STATE(922)] = 7826, - [SMALL_STATE(923)] = 7928, - [SMALL_STATE(924)] = 8026, - [SMALL_STATE(925)] = 8126, - [SMALL_STATE(926)] = 8208, - [SMALL_STATE(927)] = 8285, - [SMALL_STATE(928)] = 8362, - [SMALL_STATE(929)] = 8439, - [SMALL_STATE(930)] = 8520, - [SMALL_STATE(931)] = 8597, - [SMALL_STATE(932)] = 8674, - [SMALL_STATE(933)] = 8751, - [SMALL_STATE(934)] = 8828, - [SMALL_STATE(935)] = 8905, - [SMALL_STATE(936)] = 8982, - [SMALL_STATE(937)] = 9059, - [SMALL_STATE(938)] = 9136, - [SMALL_STATE(939)] = 9213, - [SMALL_STATE(940)] = 9290, - [SMALL_STATE(941)] = 9371, - [SMALL_STATE(942)] = 9440, - [SMALL_STATE(943)] = 9511, - [SMALL_STATE(944)] = 9592, - [SMALL_STATE(945)] = 9673, - [SMALL_STATE(946)] = 9748, - [SMALL_STATE(947)] = 9824, - [SMALL_STATE(948)] = 9900, - [SMALL_STATE(949)] = 9968, - [SMALL_STATE(950)] = 10038, - [SMALL_STATE(951)] = 10114, - [SMALL_STATE(952)] = 10190, - [SMALL_STATE(953)] = 10266, - [SMALL_STATE(954)] = 10342, - [SMALL_STATE(955)] = 10418, - [SMALL_STATE(956)] = 10494, - [SMALL_STATE(957)] = 10564, - [SMALL_STATE(958)] = 10640, - [SMALL_STATE(959)] = 10716, - [SMALL_STATE(960)] = 10792, - [SMALL_STATE(961)] = 10868, - [SMALL_STATE(962)] = 10944, - [SMALL_STATE(963)] = 11020, - [SMALL_STATE(964)] = 11096, - [SMALL_STATE(965)] = 11172, - [SMALL_STATE(966)] = 11248, - [SMALL_STATE(967)] = 11324, - [SMALL_STATE(968)] = 11400, - [SMALL_STATE(969)] = 11476, - [SMALL_STATE(970)] = 11552, - [SMALL_STATE(971)] = 11628, - [SMALL_STATE(972)] = 11704, - [SMALL_STATE(973)] = 11780, - [SMALL_STATE(974)] = 11856, - [SMALL_STATE(975)] = 11932, - [SMALL_STATE(976)] = 12002, - [SMALL_STATE(977)] = 12078, - [SMALL_STATE(978)] = 12154, - [SMALL_STATE(979)] = 12230, - [SMALL_STATE(980)] = 12306, - [SMALL_STATE(981)] = 12382, - [SMALL_STATE(982)] = 12486, - [SMALL_STATE(983)] = 12562, - [SMALL_STATE(984)] = 12627, - [SMALL_STATE(985)] = 12702, - [SMALL_STATE(986)] = 12771, - [SMALL_STATE(987)] = 12840, - [SMALL_STATE(988)] = 12905, - [SMALL_STATE(989)] = 12974, - [SMALL_STATE(990)] = 13047, - [SMALL_STATE(991)] = 13112, - [SMALL_STATE(992)] = 13177, - [SMALL_STATE(993)] = 13242, - [SMALL_STATE(994)] = 13307, - [SMALL_STATE(995)] = 13372, - [SMALL_STATE(996)] = 13437, - [SMALL_STATE(997)] = 13502, - [SMALL_STATE(998)] = 13577, - [SMALL_STATE(999)] = 13652, - [SMALL_STATE(1000)] = 13719, - [SMALL_STATE(1001)] = 13788, - [SMALL_STATE(1002)] = 13855, - [SMALL_STATE(1003)] = 13922, - [SMALL_STATE(1004)] = 13989, - [SMALL_STATE(1005)] = 14054, - [SMALL_STATE(1006)] = 14129, - [SMALL_STATE(1007)] = 14204, - [SMALL_STATE(1008)] = 14279, - [SMALL_STATE(1009)] = 14384, - [SMALL_STATE(1010)] = 14489, - [SMALL_STATE(1011)] = 14594, - [SMALL_STATE(1012)] = 14663, - [SMALL_STATE(1013)] = 14728, - [SMALL_STATE(1014)] = 14793, - [SMALL_STATE(1015)] = 14862, - [SMALL_STATE(1016)] = 14927, - [SMALL_STATE(1017)] = 15002, - [SMALL_STATE(1018)] = 15077, - [SMALL_STATE(1019)] = 15142, - [SMALL_STATE(1020)] = 15207, - [SMALL_STATE(1021)] = 15282, - [SMALL_STATE(1022)] = 15357, - [SMALL_STATE(1023)] = 15432, - [SMALL_STATE(1024)] = 15501, - [SMALL_STATE(1025)] = 15570, - [SMALL_STATE(1026)] = 15639, - [SMALL_STATE(1027)] = 15708, - [SMALL_STATE(1028)] = 15777, - [SMALL_STATE(1029)] = 15852, - [SMALL_STATE(1030)] = 15927, - [SMALL_STATE(1031)] = 15991, - [SMALL_STATE(1032)] = 16055, - [SMALL_STATE(1033)] = 16119, - [SMALL_STATE(1034)] = 16183, - [SMALL_STATE(1035)] = 16247, - [SMALL_STATE(1036)] = 16311, - [SMALL_STATE(1037)] = 16375, - [SMALL_STATE(1038)] = 16439, - [SMALL_STATE(1039)] = 16503, - [SMALL_STATE(1040)] = 16567, - [SMALL_STATE(1041)] = 16631, - [SMALL_STATE(1042)] = 16697, - [SMALL_STATE(1043)] = 16761, - [SMALL_STATE(1044)] = 16825, - [SMALL_STATE(1045)] = 16889, - [SMALL_STATE(1046)] = 16953, - [SMALL_STATE(1047)] = 17017, - [SMALL_STATE(1048)] = 17081, - [SMALL_STATE(1049)] = 17145, - [SMALL_STATE(1050)] = 17209, - [SMALL_STATE(1051)] = 17273, - [SMALL_STATE(1052)] = 17337, - [SMALL_STATE(1053)] = 17401, - [SMALL_STATE(1054)] = 17465, - [SMALL_STATE(1055)] = 17529, - [SMALL_STATE(1056)] = 17593, - [SMALL_STATE(1057)] = 17657, - [SMALL_STATE(1058)] = 17721, - [SMALL_STATE(1059)] = 17785, - [SMALL_STATE(1060)] = 17849, - [SMALL_STATE(1061)] = 17917, - [SMALL_STATE(1062)] = 17981, - [SMALL_STATE(1063)] = 18045, - [SMALL_STATE(1064)] = 18109, - [SMALL_STATE(1065)] = 18173, - [SMALL_STATE(1066)] = 18237, - [SMALL_STATE(1067)] = 18301, - [SMALL_STATE(1068)] = 18369, - [SMALL_STATE(1069)] = 18433, - [SMALL_STATE(1070)] = 18497, - [SMALL_STATE(1071)] = 18561, - [SMALL_STATE(1072)] = 18625, - [SMALL_STATE(1073)] = 18689, - [SMALL_STATE(1074)] = 18753, - [SMALL_STATE(1075)] = 18817, - [SMALL_STATE(1076)] = 18881, - [SMALL_STATE(1077)] = 18945, - [SMALL_STATE(1078)] = 19009, - [SMALL_STATE(1079)] = 19073, - [SMALL_STATE(1080)] = 19137, - [SMALL_STATE(1081)] = 19201, - [SMALL_STATE(1082)] = 19265, - [SMALL_STATE(1083)] = 19329, - [SMALL_STATE(1084)] = 19393, - [SMALL_STATE(1085)] = 19457, - [SMALL_STATE(1086)] = 19529, - [SMALL_STATE(1087)] = 19593, - [SMALL_STATE(1088)] = 19657, - [SMALL_STATE(1089)] = 19721, - [SMALL_STATE(1090)] = 19785, - [SMALL_STATE(1091)] = 19849, - [SMALL_STATE(1092)] = 19913, - [SMALL_STATE(1093)] = 19977, - [SMALL_STATE(1094)] = 20041, - [SMALL_STATE(1095)] = 20105, - [SMALL_STATE(1096)] = 20169, - [SMALL_STATE(1097)] = 20233, - [SMALL_STATE(1098)] = 20297, - [SMALL_STATE(1099)] = 20361, - [SMALL_STATE(1100)] = 20425, - [SMALL_STATE(1101)] = 20493, - [SMALL_STATE(1102)] = 20557, - [SMALL_STATE(1103)] = 20621, - [SMALL_STATE(1104)] = 20685, - [SMALL_STATE(1105)] = 20749, - [SMALL_STATE(1106)] = 20813, - [SMALL_STATE(1107)] = 20877, - [SMALL_STATE(1108)] = 20941, - [SMALL_STATE(1109)] = 21005, - [SMALL_STATE(1110)] = 21069, - [SMALL_STATE(1111)] = 21133, - [SMALL_STATE(1112)] = 21197, - [SMALL_STATE(1113)] = 21260, - [SMALL_STATE(1114)] = 21323, - [SMALL_STATE(1115)] = 21386, - [SMALL_STATE(1116)] = 21449, - [SMALL_STATE(1117)] = 21512, - [SMALL_STATE(1118)] = 21575, - [SMALL_STATE(1119)] = 21638, - [SMALL_STATE(1120)] = 21701, - [SMALL_STATE(1121)] = 21764, - [SMALL_STATE(1122)] = 21827, - [SMALL_STATE(1123)] = 21890, - [SMALL_STATE(1124)] = 21953, - [SMALL_STATE(1125)] = 22056, - [SMALL_STATE(1126)] = 22119, - [SMALL_STATE(1127)] = 22182, - [SMALL_STATE(1128)] = 22245, - [SMALL_STATE(1129)] = 22308, - [SMALL_STATE(1130)] = 22371, - [SMALL_STATE(1131)] = 22434, - [SMALL_STATE(1132)] = 22497, - [SMALL_STATE(1133)] = 22560, - [SMALL_STATE(1134)] = 22623, - [SMALL_STATE(1135)] = 22686, - [SMALL_STATE(1136)] = 22749, - [SMALL_STATE(1137)] = 22812, - [SMALL_STATE(1138)] = 22875, - [SMALL_STATE(1139)] = 22938, - [SMALL_STATE(1140)] = 23001, - [SMALL_STATE(1141)] = 23064, - [SMALL_STATE(1142)] = 23127, - [SMALL_STATE(1143)] = 23190, - [SMALL_STATE(1144)] = 23253, - [SMALL_STATE(1145)] = 23316, - [SMALL_STATE(1146)] = 23379, - [SMALL_STATE(1147)] = 23442, - [SMALL_STATE(1148)] = 23505, - [SMALL_STATE(1149)] = 23568, - [SMALL_STATE(1150)] = 23631, - [SMALL_STATE(1151)] = 23694, - [SMALL_STATE(1152)] = 23757, - [SMALL_STATE(1153)] = 23820, - [SMALL_STATE(1154)] = 23883, - [SMALL_STATE(1155)] = 23946, - [SMALL_STATE(1156)] = 24009, - [SMALL_STATE(1157)] = 24072, - [SMALL_STATE(1158)] = 24135, - [SMALL_STATE(1159)] = 24198, - [SMALL_STATE(1160)] = 24261, - [SMALL_STATE(1161)] = 24324, - [SMALL_STATE(1162)] = 24387, - [SMALL_STATE(1163)] = 24450, - [SMALL_STATE(1164)] = 24513, - [SMALL_STATE(1165)] = 24576, - [SMALL_STATE(1166)] = 24639, - [SMALL_STATE(1167)] = 24702, - [SMALL_STATE(1168)] = 24765, - [SMALL_STATE(1169)] = 24828, - [SMALL_STATE(1170)] = 24891, - [SMALL_STATE(1171)] = 24954, - [SMALL_STATE(1172)] = 25057, - [SMALL_STATE(1173)] = 25120, - [SMALL_STATE(1174)] = 25183, - [SMALL_STATE(1175)] = 25246, - [SMALL_STATE(1176)] = 25309, - [SMALL_STATE(1177)] = 25372, - [SMALL_STATE(1178)] = 25435, - [SMALL_STATE(1179)] = 25498, - [SMALL_STATE(1180)] = 25561, - [SMALL_STATE(1181)] = 25624, - [SMALL_STATE(1182)] = 25687, - [SMALL_STATE(1183)] = 25750, - [SMALL_STATE(1184)] = 25813, - [SMALL_STATE(1185)] = 25876, - [SMALL_STATE(1186)] = 25939, - [SMALL_STATE(1187)] = 26002, - [SMALL_STATE(1188)] = 26065, - [SMALL_STATE(1189)] = 26128, - [SMALL_STATE(1190)] = 26191, - [SMALL_STATE(1191)] = 26254, - [SMALL_STATE(1192)] = 26317, - [SMALL_STATE(1193)] = 26380, - [SMALL_STATE(1194)] = 26443, - [SMALL_STATE(1195)] = 26506, - [SMALL_STATE(1196)] = 26569, - [SMALL_STATE(1197)] = 26632, - [SMALL_STATE(1198)] = 26695, - [SMALL_STATE(1199)] = 26758, - [SMALL_STATE(1200)] = 26861, - [SMALL_STATE(1201)] = 26924, - [SMALL_STATE(1202)] = 27023, - [SMALL_STATE(1203)] = 27086, - [SMALL_STATE(1204)] = 27149, - [SMALL_STATE(1205)] = 27250, - [SMALL_STATE(1206)] = 27351, - [SMALL_STATE(1207)] = 27452, - [SMALL_STATE(1208)] = 27515, - [SMALL_STATE(1209)] = 27599, - [SMALL_STATE(1210)] = 27697, - [SMALL_STATE(1211)] = 27777, - [SMALL_STATE(1212)] = 27853, - [SMALL_STATE(1213)] = 27951, - [SMALL_STATE(1214)] = 28041, - [SMALL_STATE(1215)] = 28135, - [SMALL_STATE(1216)] = 28207, - [SMALL_STATE(1217)] = 28279, - [SMALL_STATE(1218)] = 28377, - [SMALL_STATE(1219)] = 28475, - [SMALL_STATE(1220)] = 28571, - [SMALL_STATE(1221)] = 28668, - [SMALL_STATE(1222)] = 28763, - [SMALL_STATE(1223)] = 28852, - [SMALL_STATE(1224)] = 28949, - [SMALL_STATE(1225)] = 29046, - [SMALL_STATE(1226)] = 29143, - [SMALL_STATE(1227)] = 29226, - [SMALL_STATE(1228)] = 29305, - [SMALL_STATE(1229)] = 29380, - [SMALL_STATE(1230)] = 29451, - [SMALL_STATE(1231)] = 29548, - [SMALL_STATE(1232)] = 29645, - [SMALL_STATE(1233)] = 29742, - [SMALL_STATE(1234)] = 29839, - [SMALL_STATE(1235)] = 29936, - [SMALL_STATE(1236)] = 30029, - [SMALL_STATE(1237)] = 30100, - [SMALL_STATE(1238)] = 30197, - [SMALL_STATE(1239)] = 30294, - [SMALL_STATE(1240)] = 30391, - [SMALL_STATE(1241)] = 30488, - [SMALL_STATE(1242)] = 30551, - [SMALL_STATE(1243)] = 30612, - [SMALL_STATE(1244)] = 30675, - [SMALL_STATE(1245)] = 30735, - [SMALL_STATE(1246)] = 30797, - [SMALL_STATE(1247)] = 30859, - [SMALL_STATE(1248)] = 30916, - [SMALL_STATE(1249)] = 30973, - [SMALL_STATE(1250)] = 31030, - [SMALL_STATE(1251)] = 31087, - [SMALL_STATE(1252)] = 31144, - [SMALL_STATE(1253)] = 31201, - [SMALL_STATE(1254)] = 31258, - [SMALL_STATE(1255)] = 31315, - [SMALL_STATE(1256)] = 31372, - [SMALL_STATE(1257)] = 31429, - [SMALL_STATE(1258)] = 31486, - [SMALL_STATE(1259)] = 31542, - [SMALL_STATE(1260)] = 31598, - [SMALL_STATE(1261)] = 31654, - [SMALL_STATE(1262)] = 31710, - [SMALL_STATE(1263)] = 31766, - [SMALL_STATE(1264)] = 31822, - [SMALL_STATE(1265)] = 31878, - [SMALL_STATE(1266)] = 31934, - [SMALL_STATE(1267)] = 31990, - [SMALL_STATE(1268)] = 32052, - [SMALL_STATE(1269)] = 32108, - [SMALL_STATE(1270)] = 32164, - [SMALL_STATE(1271)] = 32225, - [SMALL_STATE(1272)] = 32286, - [SMALL_STATE(1273)] = 32347, - [SMALL_STATE(1274)] = 32419, - [SMALL_STATE(1275)] = 32479, - [SMALL_STATE(1276)] = 32549, - [SMALL_STATE(1277)] = 32609, - [SMALL_STATE(1278)] = 32679, - [SMALL_STATE(1279)] = 32733, - [SMALL_STATE(1280)] = 32803, - [SMALL_STATE(1281)] = 32873, - [SMALL_STATE(1282)] = 32933, - [SMALL_STATE(1283)] = 32986, - [SMALL_STATE(1284)] = 33039, - [SMALL_STATE(1285)] = 33092, - [SMALL_STATE(1286)] = 33145, - [SMALL_STATE(1287)] = 33212, - [SMALL_STATE(1288)] = 33265, - [SMALL_STATE(1289)] = 33318, - [SMALL_STATE(1290)] = 33371, - [SMALL_STATE(1291)] = 33438, - [SMALL_STATE(1292)] = 33491, - [SMALL_STATE(1293)] = 33558, - [SMALL_STATE(1294)] = 33611, - [SMALL_STATE(1295)] = 33678, - [SMALL_STATE(1296)] = 33731, - [SMALL_STATE(1297)] = 33792, - [SMALL_STATE(1298)] = 33845, - [SMALL_STATE(1299)] = 33912, - [SMALL_STATE(1300)] = 33979, - [SMALL_STATE(1301)] = 34032, - [SMALL_STATE(1302)] = 34085, - [SMALL_STATE(1303)] = 34152, - [SMALL_STATE(1304)] = 34219, - [SMALL_STATE(1305)] = 34272, - [SMALL_STATE(1306)] = 34334, - [SMALL_STATE(1307)] = 34396, - [SMALL_STATE(1308)] = 34458, - [SMALL_STATE(1309)] = 34520, - [SMALL_STATE(1310)] = 34582, - [SMALL_STATE(1311)] = 34644, - [SMALL_STATE(1312)] = 34706, - [SMALL_STATE(1313)] = 34768, - [SMALL_STATE(1314)] = 34830, - [SMALL_STATE(1315)] = 34892, - [SMALL_STATE(1316)] = 34954, - [SMALL_STATE(1317)] = 35016, - [SMALL_STATE(1318)] = 35078, - [SMALL_STATE(1319)] = 35139, - [SMALL_STATE(1320)] = 35194, - [SMALL_STATE(1321)] = 35255, - [SMALL_STATE(1322)] = 35316, - [SMALL_STATE(1323)] = 35377, - [SMALL_STATE(1324)] = 35438, - [SMALL_STATE(1325)] = 35499, - [SMALL_STATE(1326)] = 35560, - [SMALL_STATE(1327)] = 35621, - [SMALL_STATE(1328)] = 35682, - [SMALL_STATE(1329)] = 35737, - [SMALL_STATE(1330)] = 35792, - [SMALL_STATE(1331)] = 35847, - [SMALL_STATE(1332)] = 35908, - [SMALL_STATE(1333)] = 35969, - [SMALL_STATE(1334)] = 36030, - [SMALL_STATE(1335)] = 36091, - [SMALL_STATE(1336)] = 36152, - [SMALL_STATE(1337)] = 36213, - [SMALL_STATE(1338)] = 36274, - [SMALL_STATE(1339)] = 36324, - [SMALL_STATE(1340)] = 36378, - [SMALL_STATE(1341)] = 36428, - [SMALL_STATE(1342)] = 36482, - [SMALL_STATE(1343)] = 36532, - [SMALL_STATE(1344)] = 36586, - [SMALL_STATE(1345)] = 36640, - [SMALL_STATE(1346)] = 36694, - [SMALL_STATE(1347)] = 36748, - [SMALL_STATE(1348)] = 36802, - [SMALL_STATE(1349)] = 36852, - [SMALL_STATE(1350)] = 36904, - [SMALL_STATE(1351)] = 36956, - [SMALL_STATE(1352)] = 37010, - [SMALL_STATE(1353)] = 37062, - [SMALL_STATE(1354)] = 37112, - [SMALL_STATE(1355)] = 37166, - [SMALL_STATE(1356)] = 37216, - [SMALL_STATE(1357)] = 37266, - [SMALL_STATE(1358)] = 37324, - [SMALL_STATE(1359)] = 37376, - [SMALL_STATE(1360)] = 37425, - [SMALL_STATE(1361)] = 37474, - [SMALL_STATE(1362)] = 37523, - [SMALL_STATE(1363)] = 37572, - [SMALL_STATE(1364)] = 37621, - [SMALL_STATE(1365)] = 37670, - [SMALL_STATE(1366)] = 37719, - [SMALL_STATE(1367)] = 37768, - [SMALL_STATE(1368)] = 37817, - [SMALL_STATE(1369)] = 37866, - [SMALL_STATE(1370)] = 37915, - [SMALL_STATE(1371)] = 37964, - [SMALL_STATE(1372)] = 38013, - [SMALL_STATE(1373)] = 38062, - [SMALL_STATE(1374)] = 38111, - [SMALL_STATE(1375)] = 38160, - [SMALL_STATE(1376)] = 38209, - [SMALL_STATE(1377)] = 38258, - [SMALL_STATE(1378)] = 38307, - [SMALL_STATE(1379)] = 38356, - [SMALL_STATE(1380)] = 38405, - [SMALL_STATE(1381)] = 38454, - [SMALL_STATE(1382)] = 38503, - [SMALL_STATE(1383)] = 38552, - [SMALL_STATE(1384)] = 38601, - [SMALL_STATE(1385)] = 38650, - [SMALL_STATE(1386)] = 38699, - [SMALL_STATE(1387)] = 38748, - [SMALL_STATE(1388)] = 38797, - [SMALL_STATE(1389)] = 38846, - [SMALL_STATE(1390)] = 38895, - [SMALL_STATE(1391)] = 38944, - [SMALL_STATE(1392)] = 38993, - [SMALL_STATE(1393)] = 39042, - [SMALL_STATE(1394)] = 39091, - [SMALL_STATE(1395)] = 39140, - [SMALL_STATE(1396)] = 39189, - [SMALL_STATE(1397)] = 39238, - [SMALL_STATE(1398)] = 39287, - [SMALL_STATE(1399)] = 39336, - [SMALL_STATE(1400)] = 39385, - [SMALL_STATE(1401)] = 39434, - [SMALL_STATE(1402)] = 39483, - [SMALL_STATE(1403)] = 39532, - [SMALL_STATE(1404)] = 39581, - [SMALL_STATE(1405)] = 39630, - [SMALL_STATE(1406)] = 39679, - [SMALL_STATE(1407)] = 39728, - [SMALL_STATE(1408)] = 39777, - [SMALL_STATE(1409)] = 39826, - [SMALL_STATE(1410)] = 39875, - [SMALL_STATE(1411)] = 39924, - [SMALL_STATE(1412)] = 39973, - [SMALL_STATE(1413)] = 40022, - [SMALL_STATE(1414)] = 40071, - [SMALL_STATE(1415)] = 40120, - [SMALL_STATE(1416)] = 40169, - [SMALL_STATE(1417)] = 40218, - [SMALL_STATE(1418)] = 40267, - [SMALL_STATE(1419)] = 40316, - [SMALL_STATE(1420)] = 40365, - [SMALL_STATE(1421)] = 40414, - [SMALL_STATE(1422)] = 40463, - [SMALL_STATE(1423)] = 40512, - [SMALL_STATE(1424)] = 40561, - [SMALL_STATE(1425)] = 40610, - [SMALL_STATE(1426)] = 40659, - [SMALL_STATE(1427)] = 40708, - [SMALL_STATE(1428)] = 40757, - [SMALL_STATE(1429)] = 40806, - [SMALL_STATE(1430)] = 40855, - [SMALL_STATE(1431)] = 40904, - [SMALL_STATE(1432)] = 40953, - [SMALL_STATE(1433)] = 41002, - [SMALL_STATE(1434)] = 41051, - [SMALL_STATE(1435)] = 41100, - [SMALL_STATE(1436)] = 41149, - [SMALL_STATE(1437)] = 41198, - [SMALL_STATE(1438)] = 41247, - [SMALL_STATE(1439)] = 41296, - [SMALL_STATE(1440)] = 41345, - [SMALL_STATE(1441)] = 41394, - [SMALL_STATE(1442)] = 41443, - [SMALL_STATE(1443)] = 41492, - [SMALL_STATE(1444)] = 41541, - [SMALL_STATE(1445)] = 41627, - [SMALL_STATE(1446)] = 41711, - [SMALL_STATE(1447)] = 41795, - [SMALL_STATE(1448)] = 41879, - [SMALL_STATE(1449)] = 41963, - [SMALL_STATE(1450)] = 42047, - [SMALL_STATE(1451)] = 42133, - [SMALL_STATE(1452)] = 42219, - [SMALL_STATE(1453)] = 42305, - [SMALL_STATE(1454)] = 42389, - [SMALL_STATE(1455)] = 42439, - [SMALL_STATE(1456)] = 42525, - [SMALL_STATE(1457)] = 42611, - [SMALL_STATE(1458)] = 42668, - [SMALL_STATE(1459)] = 42749, - [SMALL_STATE(1460)] = 42830, - [SMALL_STATE(1461)] = 42911, - [SMALL_STATE(1462)] = 42968, - [SMALL_STATE(1463)] = 43025, - [SMALL_STATE(1464)] = 43086, - [SMALL_STATE(1465)] = 43151, - [SMALL_STATE(1466)] = 43220, - [SMALL_STATE(1467)] = 43281, - [SMALL_STATE(1468)] = 43362, - [SMALL_STATE(1469)] = 43419, - [SMALL_STATE(1470)] = 43500, - [SMALL_STATE(1471)] = 43581, - [SMALL_STATE(1472)] = 43656, - [SMALL_STATE(1473)] = 43735, - [SMALL_STATE(1474)] = 43816, - [SMALL_STATE(1475)] = 43897, - [SMALL_STATE(1476)] = 43976, - [SMALL_STATE(1477)] = 44057, - [SMALL_STATE(1478)] = 44132, - [SMALL_STATE(1479)] = 44201, - [SMALL_STATE(1480)] = 44282, - [SMALL_STATE(1481)] = 44363, - [SMALL_STATE(1482)] = 44428, - [SMALL_STATE(1483)] = 44496, - [SMALL_STATE(1484)] = 44580, - [SMALL_STATE(1485)] = 44664, - [SMALL_STATE(1486)] = 44744, - [SMALL_STATE(1487)] = 44828, - [SMALL_STATE(1488)] = 44884, - [SMALL_STATE(1489)] = 44944, - [SMALL_STATE(1490)] = 45008, - [SMALL_STATE(1491)] = 45076, - [SMALL_STATE(1492)] = 45160, - [SMALL_STATE(1493)] = 45234, - [SMALL_STATE(1494)] = 45318, - [SMALL_STATE(1495)] = 45374, - [SMALL_STATE(1496)] = 45452, - [SMALL_STATE(1497)] = 45516, - [SMALL_STATE(1498)] = 45596, - [SMALL_STATE(1499)] = 45656, - [SMALL_STATE(1500)] = 45712, - [SMALL_STATE(1501)] = 45796, - [SMALL_STATE(1502)] = 45876, - [SMALL_STATE(1503)] = 45956, - [SMALL_STATE(1504)] = 46036, - [SMALL_STATE(1505)] = 46120, - [SMALL_STATE(1506)] = 46200, - [SMALL_STATE(1507)] = 46284, - [SMALL_STATE(1508)] = 46362, - [SMALL_STATE(1509)] = 46446, - [SMALL_STATE(1510)] = 46530, - [SMALL_STATE(1511)] = 46614, - [SMALL_STATE(1512)] = 46698, - [SMALL_STATE(1513)] = 46782, - [SMALL_STATE(1514)] = 46856, - [SMALL_STATE(1515)] = 46940, - [SMALL_STATE(1516)] = 46996, - [SMALL_STATE(1517)] = 47080, - [SMALL_STATE(1518)] = 47164, - [SMALL_STATE(1519)] = 47244, - [SMALL_STATE(1520)] = 47324, - [SMALL_STATE(1521)] = 47404, - [SMALL_STATE(1522)] = 47488, - [SMALL_STATE(1523)] = 47570, - [SMALL_STATE(1524)] = 47654, - [SMALL_STATE(1525)] = 47734, - [SMALL_STATE(1526)] = 47818, - [SMALL_STATE(1527)] = 47902, - [SMALL_STATE(1528)] = 47982, - [SMALL_STATE(1529)] = 48061, - [SMALL_STATE(1530)] = 48142, - [SMALL_STATE(1531)] = 48223, - [SMALL_STATE(1532)] = 48304, - [SMALL_STATE(1533)] = 48385, - [SMALL_STATE(1534)] = 48466, - [SMALL_STATE(1535)] = 48547, - [SMALL_STATE(1536)] = 48628, - [SMALL_STATE(1537)] = 48707, - [SMALL_STATE(1538)] = 48788, - [SMALL_STATE(1539)] = 48869, - [SMALL_STATE(1540)] = 48948, - [SMALL_STATE(1541)] = 49029, - [SMALL_STATE(1542)] = 49110, - [SMALL_STATE(1543)] = 49191, - [SMALL_STATE(1544)] = 49272, - [SMALL_STATE(1545)] = 49353, - [SMALL_STATE(1546)] = 49431, - [SMALL_STATE(1547)] = 49509, - [SMALL_STATE(1548)] = 49587, - [SMALL_STATE(1549)] = 49665, - [SMALL_STATE(1550)] = 49743, - [SMALL_STATE(1551)] = 49821, - [SMALL_STATE(1552)] = 49899, - [SMALL_STATE(1553)] = 49977, - [SMALL_STATE(1554)] = 50055, - [SMALL_STATE(1555)] = 50133, - [SMALL_STATE(1556)] = 50179, - [SMALL_STATE(1557)] = 50257, - [SMALL_STATE(1558)] = 50303, - [SMALL_STATE(1559)] = 50381, - [SMALL_STATE(1560)] = 50459, - [SMALL_STATE(1561)] = 50537, - [SMALL_STATE(1562)] = 50615, - [SMALL_STATE(1563)] = 50693, - [SMALL_STATE(1564)] = 50771, - [SMALL_STATE(1565)] = 50849, - [SMALL_STATE(1566)] = 50897, - [SMALL_STATE(1567)] = 50975, - [SMALL_STATE(1568)] = 51053, - [SMALL_STATE(1569)] = 51131, - [SMALL_STATE(1570)] = 51209, - [SMALL_STATE(1571)] = 51287, - [SMALL_STATE(1572)] = 51365, - [SMALL_STATE(1573)] = 51443, - [SMALL_STATE(1574)] = 51521, - [SMALL_STATE(1575)] = 51599, - [SMALL_STATE(1576)] = 51677, - [SMALL_STATE(1577)] = 51755, - [SMALL_STATE(1578)] = 51833, - [SMALL_STATE(1579)] = 51911, - [SMALL_STATE(1580)] = 51989, - [SMALL_STATE(1581)] = 52067, - [SMALL_STATE(1582)] = 52145, - [SMALL_STATE(1583)] = 52223, - [SMALL_STATE(1584)] = 52301, - [SMALL_STATE(1585)] = 52379, - [SMALL_STATE(1586)] = 52457, - [SMALL_STATE(1587)] = 52535, - [SMALL_STATE(1588)] = 52613, - [SMALL_STATE(1589)] = 52691, - [SMALL_STATE(1590)] = 52769, - [SMALL_STATE(1591)] = 52847, - [SMALL_STATE(1592)] = 52925, - [SMALL_STATE(1593)] = 53003, - [SMALL_STATE(1594)] = 53081, - [SMALL_STATE(1595)] = 53129, - [SMALL_STATE(1596)] = 53207, - [SMALL_STATE(1597)] = 53285, - [SMALL_STATE(1598)] = 53363, - [SMALL_STATE(1599)] = 53441, - [SMALL_STATE(1600)] = 53519, - [SMALL_STATE(1601)] = 53597, - [SMALL_STATE(1602)] = 53675, - [SMALL_STATE(1603)] = 53720, - [SMALL_STATE(1604)] = 53765, - [SMALL_STATE(1605)] = 53807, - [SMALL_STATE(1606)] = 53849, - [SMALL_STATE(1607)] = 53891, - [SMALL_STATE(1608)] = 53933, - [SMALL_STATE(1609)] = 53975, - [SMALL_STATE(1610)] = 54017, - [SMALL_STATE(1611)] = 54059, - [SMALL_STATE(1612)] = 54101, - [SMALL_STATE(1613)] = 54143, - [SMALL_STATE(1614)] = 54185, - [SMALL_STATE(1615)] = 54227, - [SMALL_STATE(1616)] = 54283, - [SMALL_STATE(1617)] = 54339, - [SMALL_STATE(1618)] = 54394, - [SMALL_STATE(1619)] = 54447, - [SMALL_STATE(1620)] = 54502, - [SMALL_STATE(1621)] = 54557, - [SMALL_STATE(1622)] = 54612, - [SMALL_STATE(1623)] = 54665, - [SMALL_STATE(1624)] = 54713, - [SMALL_STATE(1625)] = 54761, - [SMALL_STATE(1626)] = 54809, - [SMALL_STATE(1627)] = 54857, - [SMALL_STATE(1628)] = 54905, - [SMALL_STATE(1629)] = 54953, - [SMALL_STATE(1630)] = 55001, - [SMALL_STATE(1631)] = 55049, - [SMALL_STATE(1632)] = 55101, - [SMALL_STATE(1633)] = 55153, - [SMALL_STATE(1634)] = 55205, - [SMALL_STATE(1635)] = 55257, - [SMALL_STATE(1636)] = 55305, - [SMALL_STATE(1637)] = 55353, - [SMALL_STATE(1638)] = 55401, - [SMALL_STATE(1639)] = 55449, - [SMALL_STATE(1640)] = 55497, - [SMALL_STATE(1641)] = 55544, - [SMALL_STATE(1642)] = 55591, - [SMALL_STATE(1643)] = 55632, - [SMALL_STATE(1644)] = 55679, - [SMALL_STATE(1645)] = 55726, - [SMALL_STATE(1646)] = 55773, - [SMALL_STATE(1647)] = 55814, - [SMALL_STATE(1648)] = 55861, - [SMALL_STATE(1649)] = 55908, - [SMALL_STATE(1650)] = 55955, - [SMALL_STATE(1651)] = 56002, - [SMALL_STATE(1652)] = 56049, - [SMALL_STATE(1653)] = 56096, - [SMALL_STATE(1654)] = 56143, - [SMALL_STATE(1655)] = 56190, - [SMALL_STATE(1656)] = 56236, - [SMALL_STATE(1657)] = 56276, - [SMALL_STATE(1658)] = 56322, - [SMALL_STATE(1659)] = 56368, - [SMALL_STATE(1660)] = 56408, - [SMALL_STATE(1661)] = 56448, - [SMALL_STATE(1662)] = 56494, - [SMALL_STATE(1663)] = 56530, - [SMALL_STATE(1664)] = 56576, - [SMALL_STATE(1665)] = 56622, - [SMALL_STATE(1666)] = 56668, - [SMALL_STATE(1667)] = 56708, - [SMALL_STATE(1668)] = 56746, - [SMALL_STATE(1669)] = 56786, - [SMALL_STATE(1670)] = 56822, - [SMALL_STATE(1671)] = 56868, - [SMALL_STATE(1672)] = 56906, - [SMALL_STATE(1673)] = 56952, - [SMALL_STATE(1674)] = 56998, - [SMALL_STATE(1675)] = 57036, - [SMALL_STATE(1676)] = 57072, - [SMALL_STATE(1677)] = 57118, - [SMALL_STATE(1678)] = 57164, - [SMALL_STATE(1679)] = 57204, - [SMALL_STATE(1680)] = 57250, - [SMALL_STATE(1681)] = 57286, - [SMALL_STATE(1682)] = 57324, - [SMALL_STATE(1683)] = 57364, - [SMALL_STATE(1684)] = 57399, - [SMALL_STATE(1685)] = 57436, - [SMALL_STATE(1686)] = 57471, - [SMALL_STATE(1687)] = 57506, - [SMALL_STATE(1688)] = 57541, - [SMALL_STATE(1689)] = 57576, - [SMALL_STATE(1690)] = 57611, - [SMALL_STATE(1691)] = 57646, - [SMALL_STATE(1692)] = 57681, - [SMALL_STATE(1693)] = 57716, - [SMALL_STATE(1694)] = 57751, - [SMALL_STATE(1695)] = 57786, - [SMALL_STATE(1696)] = 57821, - [SMALL_STATE(1697)] = 57856, - [SMALL_STATE(1698)] = 57891, - [SMALL_STATE(1699)] = 57926, - [SMALL_STATE(1700)] = 57961, - [SMALL_STATE(1701)] = 57996, - [SMALL_STATE(1702)] = 58031, - [SMALL_STATE(1703)] = 58066, - [SMALL_STATE(1704)] = 58101, - [SMALL_STATE(1705)] = 58136, - [SMALL_STATE(1706)] = 58171, - [SMALL_STATE(1707)] = 58206, - [SMALL_STATE(1708)] = 58241, - [SMALL_STATE(1709)] = 58276, - [SMALL_STATE(1710)] = 58311, - [SMALL_STATE(1711)] = 58346, - [SMALL_STATE(1712)] = 58381, - [SMALL_STATE(1713)] = 58416, - [SMALL_STATE(1714)] = 58451, - [SMALL_STATE(1715)] = 58486, - [SMALL_STATE(1716)] = 58521, - [SMALL_STATE(1717)] = 58556, - [SMALL_STATE(1718)] = 58591, - [SMALL_STATE(1719)] = 58626, - [SMALL_STATE(1720)] = 58661, - [SMALL_STATE(1721)] = 58696, - [SMALL_STATE(1722)] = 58731, - [SMALL_STATE(1723)] = 58766, - [SMALL_STATE(1724)] = 58805, - [SMALL_STATE(1725)] = 58840, - [SMALL_STATE(1726)] = 58879, - [SMALL_STATE(1727)] = 58914, - [SMALL_STATE(1728)] = 58949, - [SMALL_STATE(1729)] = 58984, - [SMALL_STATE(1730)] = 59019, - [SMALL_STATE(1731)] = 59054, - [SMALL_STATE(1732)] = 59089, - [SMALL_STATE(1733)] = 59124, - [SMALL_STATE(1734)] = 59159, - [SMALL_STATE(1735)] = 59194, - [SMALL_STATE(1736)] = 59229, - [SMALL_STATE(1737)] = 59264, - [SMALL_STATE(1738)] = 59299, - [SMALL_STATE(1739)] = 59334, - [SMALL_STATE(1740)] = 59369, - [SMALL_STATE(1741)] = 59404, - [SMALL_STATE(1742)] = 59439, - [SMALL_STATE(1743)] = 59474, - [SMALL_STATE(1744)] = 59509, - [SMALL_STATE(1745)] = 59544, - [SMALL_STATE(1746)] = 59579, - [SMALL_STATE(1747)] = 59614, - [SMALL_STATE(1748)] = 59649, - [SMALL_STATE(1749)] = 59684, - [SMALL_STATE(1750)] = 59719, - [SMALL_STATE(1751)] = 59754, - [SMALL_STATE(1752)] = 59789, - [SMALL_STATE(1753)] = 59824, - [SMALL_STATE(1754)] = 59859, - [SMALL_STATE(1755)] = 59898, - [SMALL_STATE(1756)] = 59933, - [SMALL_STATE(1757)] = 59968, - [SMALL_STATE(1758)] = 60003, - [SMALL_STATE(1759)] = 60038, - [SMALL_STATE(1760)] = 60073, - [SMALL_STATE(1761)] = 60108, - [SMALL_STATE(1762)] = 60143, - [SMALL_STATE(1763)] = 60177, - [SMALL_STATE(1764)] = 60211, - [SMALL_STATE(1765)] = 60245, - [SMALL_STATE(1766)] = 60313, - [SMALL_STATE(1767)] = 60347, - [SMALL_STATE(1768)] = 60381, - [SMALL_STATE(1769)] = 60415, - [SMALL_STATE(1770)] = 60449, - [SMALL_STATE(1771)] = 60483, - [SMALL_STATE(1772)] = 60517, - [SMALL_STATE(1773)] = 60587, - [SMALL_STATE(1774)] = 60621, - [SMALL_STATE(1775)] = 60655, - [SMALL_STATE(1776)] = 60689, - [SMALL_STATE(1777)] = 60723, - [SMALL_STATE(1778)] = 60757, - [SMALL_STATE(1779)] = 60791, - [SMALL_STATE(1780)] = 60825, - [SMALL_STATE(1781)] = 60859, - [SMALL_STATE(1782)] = 60893, - [SMALL_STATE(1783)] = 60927, - [SMALL_STATE(1784)] = 60997, - [SMALL_STATE(1785)] = 61031, - [SMALL_STATE(1786)] = 61065, - [SMALL_STATE(1787)] = 61099, - [SMALL_STATE(1788)] = 61133, - [SMALL_STATE(1789)] = 61167, - [SMALL_STATE(1790)] = 61201, - [SMALL_STATE(1791)] = 61235, - [SMALL_STATE(1792)] = 61269, - [SMALL_STATE(1793)] = 61303, - [SMALL_STATE(1794)] = 61337, - [SMALL_STATE(1795)] = 61371, - [SMALL_STATE(1796)] = 61405, - [SMALL_STATE(1797)] = 61439, - [SMALL_STATE(1798)] = 61473, - [SMALL_STATE(1799)] = 61507, - [SMALL_STATE(1800)] = 61541, - [SMALL_STATE(1801)] = 61575, - [SMALL_STATE(1802)] = 61609, - [SMALL_STATE(1803)] = 61643, - [SMALL_STATE(1804)] = 61677, - [SMALL_STATE(1805)] = 61711, - [SMALL_STATE(1806)] = 61781, - [SMALL_STATE(1807)] = 61815, - [SMALL_STATE(1808)] = 61849, - [SMALL_STATE(1809)] = 61883, - [SMALL_STATE(1810)] = 61917, - [SMALL_STATE(1811)] = 61951, - [SMALL_STATE(1812)] = 61985, - [SMALL_STATE(1813)] = 62019, - [SMALL_STATE(1814)] = 62053, - [SMALL_STATE(1815)] = 62087, - [SMALL_STATE(1816)] = 62121, - [SMALL_STATE(1817)] = 62155, - [SMALL_STATE(1818)] = 62189, - [SMALL_STATE(1819)] = 62223, - [SMALL_STATE(1820)] = 62257, - [SMALL_STATE(1821)] = 62327, - [SMALL_STATE(1822)] = 62361, - [SMALL_STATE(1823)] = 62395, - [SMALL_STATE(1824)] = 62429, - [SMALL_STATE(1825)] = 62463, - [SMALL_STATE(1826)] = 62533, - [SMALL_STATE(1827)] = 62567, - [SMALL_STATE(1828)] = 62601, - [SMALL_STATE(1829)] = 62635, - [SMALL_STATE(1830)] = 62669, - [SMALL_STATE(1831)] = 62703, - [SMALL_STATE(1832)] = 62737, - [SMALL_STATE(1833)] = 62771, - [SMALL_STATE(1834)] = 62805, - [SMALL_STATE(1835)] = 62839, - [SMALL_STATE(1836)] = 62873, - [SMALL_STATE(1837)] = 62907, - [SMALL_STATE(1838)] = 62941, - [SMALL_STATE(1839)] = 62975, - [SMALL_STATE(1840)] = 63045, - [SMALL_STATE(1841)] = 63112, - [SMALL_STATE(1842)] = 63179, - [SMALL_STATE(1843)] = 63246, - [SMALL_STATE(1844)] = 63313, - [SMALL_STATE(1845)] = 63380, - [SMALL_STATE(1846)] = 63447, - [SMALL_STATE(1847)] = 63514, - [SMALL_STATE(1848)] = 63581, - [SMALL_STATE(1849)] = 63648, - [SMALL_STATE(1850)] = 63715, - [SMALL_STATE(1851)] = 63782, - [SMALL_STATE(1852)] = 63849, - [SMALL_STATE(1853)] = 63916, - [SMALL_STATE(1854)] = 63983, - [SMALL_STATE(1855)] = 64050, - [SMALL_STATE(1856)] = 64117, - [SMALL_STATE(1857)] = 64184, - [SMALL_STATE(1858)] = 64251, - [SMALL_STATE(1859)] = 64318, - [SMALL_STATE(1860)] = 64385, - [SMALL_STATE(1861)] = 64452, - [SMALL_STATE(1862)] = 64487, - [SMALL_STATE(1863)] = 64518, - [SMALL_STATE(1864)] = 64553, - [SMALL_STATE(1865)] = 64588, - [SMALL_STATE(1866)] = 64616, - [SMALL_STATE(1867)] = 64648, - [SMALL_STATE(1868)] = 64680, - [SMALL_STATE(1869)] = 64714, - [SMALL_STATE(1870)] = 64742, - [SMALL_STATE(1871)] = 64774, - [SMALL_STATE(1872)] = 64802, - [SMALL_STATE(1873)] = 64830, - [SMALL_STATE(1874)] = 64862, - [SMALL_STATE(1875)] = 64889, - [SMALL_STATE(1876)] = 64918, - [SMALL_STATE(1877)] = 64947, - [SMALL_STATE(1878)] = 64976, - [SMALL_STATE(1879)] = 65030, - [SMALL_STATE(1880)] = 65058, - [SMALL_STATE(1881)] = 65086, - [SMALL_STATE(1882)] = 65114, - [SMALL_STATE(1883)] = 65139, - [SMALL_STATE(1884)] = 65164, - [SMALL_STATE(1885)] = 65189, - [SMALL_STATE(1886)] = 65214, - [SMALL_STATE(1887)] = 65239, - [SMALL_STATE(1888)] = 65264, - [SMALL_STATE(1889)] = 65289, - [SMALL_STATE(1890)] = 65314, - [SMALL_STATE(1891)] = 65339, - [SMALL_STATE(1892)] = 65364, - [SMALL_STATE(1893)] = 65389, - [SMALL_STATE(1894)] = 65414, - [SMALL_STATE(1895)] = 65439, - [SMALL_STATE(1896)] = 65464, - [SMALL_STATE(1897)] = 65489, - [SMALL_STATE(1898)] = 65514, - [SMALL_STATE(1899)] = 65539, - [SMALL_STATE(1900)] = 65564, - [SMALL_STATE(1901)] = 65589, - [SMALL_STATE(1902)] = 65614, - [SMALL_STATE(1903)] = 65639, - [SMALL_STATE(1904)] = 65664, - [SMALL_STATE(1905)] = 65689, - [SMALL_STATE(1906)] = 65735, - [SMALL_STATE(1907)] = 65774, - [SMALL_STATE(1908)] = 65811, - [SMALL_STATE(1909)] = 65848, - [SMALL_STATE(1910)] = 65883, - [SMALL_STATE(1911)] = 65920, - [SMALL_STATE(1912)] = 65957, - [SMALL_STATE(1913)] = 65992, - [SMALL_STATE(1914)] = 66029, - [SMALL_STATE(1915)] = 66064, - [SMALL_STATE(1916)] = 66101, - [SMALL_STATE(1917)] = 66138, - [SMALL_STATE(1918)] = 66173, - [SMALL_STATE(1919)] = 66212, - [SMALL_STATE(1920)] = 66249, - [SMALL_STATE(1921)] = 66284, - [SMALL_STATE(1922)] = 66320, - [SMALL_STATE(1923)] = 66356, - [SMALL_STATE(1924)] = 66386, - [SMALL_STATE(1925)] = 66416, - [SMALL_STATE(1926)] = 66446, - [SMALL_STATE(1927)] = 66476, - [SMALL_STATE(1928)] = 66506, - [SMALL_STATE(1929)] = 66536, - [SMALL_STATE(1930)] = 66566, - [SMALL_STATE(1931)] = 66596, - [SMALL_STATE(1932)] = 66626, - [SMALL_STATE(1933)] = 66654, - [SMALL_STATE(1934)] = 66684, - [SMALL_STATE(1935)] = 66708, - [SMALL_STATE(1936)] = 66732, - [SMALL_STATE(1937)] = 66756, - [SMALL_STATE(1938)] = 66774, - [SMALL_STATE(1939)] = 66798, - [SMALL_STATE(1940)] = 66822, - [SMALL_STATE(1941)] = 66846, - [SMALL_STATE(1942)] = 66870, - [SMALL_STATE(1943)] = 66894, - [SMALL_STATE(1944)] = 66915, - [SMALL_STATE(1945)] = 66940, - [SMALL_STATE(1946)] = 66961, - [SMALL_STATE(1947)] = 66982, - [SMALL_STATE(1948)] = 67007, - [SMALL_STATE(1949)] = 67032, - [SMALL_STATE(1950)] = 67057, - [SMALL_STATE(1951)] = 67075, - [SMALL_STATE(1952)] = 67093, - [SMALL_STATE(1953)] = 67111, - [SMALL_STATE(1954)] = 67129, - [SMALL_STATE(1955)] = 67147, - [SMALL_STATE(1956)] = 67165, - [SMALL_STATE(1957)] = 67185, - [SMALL_STATE(1958)] = 67203, - [SMALL_STATE(1959)] = 67223, - [SMALL_STATE(1960)] = 67243, - [SMALL_STATE(1961)] = 67261, - [SMALL_STATE(1962)] = 67279, - [SMALL_STATE(1963)] = 67297, - [SMALL_STATE(1964)] = 67317, - [SMALL_STATE(1965)] = 67335, - [SMALL_STATE(1966)] = 67355, - [SMALL_STATE(1967)] = 67373, - [SMALL_STATE(1968)] = 67395, - [SMALL_STATE(1969)] = 67413, - [SMALL_STATE(1970)] = 67431, - [SMALL_STATE(1971)] = 67451, - [SMALL_STATE(1972)] = 67471, - [SMALL_STATE(1973)] = 67489, - [SMALL_STATE(1974)] = 67509, - [SMALL_STATE(1975)] = 67527, - [SMALL_STATE(1976)] = 67545, - [SMALL_STATE(1977)] = 67565, - [SMALL_STATE(1978)] = 67583, - [SMALL_STATE(1979)] = 67601, - [SMALL_STATE(1980)] = 67621, - [SMALL_STATE(1981)] = 67641, - [SMALL_STATE(1982)] = 67659, - [SMALL_STATE(1983)] = 67677, - [SMALL_STATE(1984)] = 67695, - [SMALL_STATE(1985)] = 67713, - [SMALL_STATE(1986)] = 67733, - [SMALL_STATE(1987)] = 67751, - [SMALL_STATE(1988)] = 67769, - [SMALL_STATE(1989)] = 67791, - [SMALL_STATE(1990)] = 67809, - [SMALL_STATE(1991)] = 67827, - [SMALL_STATE(1992)] = 67847, - [SMALL_STATE(1993)] = 67867, - [SMALL_STATE(1994)] = 67885, - [SMALL_STATE(1995)] = 67905, - [SMALL_STATE(1996)] = 67923, - [SMALL_STATE(1997)] = 67943, - [SMALL_STATE(1998)] = 67961, - [SMALL_STATE(1999)] = 67980, - [SMALL_STATE(2000)] = 67999, - [SMALL_STATE(2001)] = 68018, - [SMALL_STATE(2002)] = 68037, - [SMALL_STATE(2003)] = 68056, - [SMALL_STATE(2004)] = 68075, - [SMALL_STATE(2005)] = 68094, - [SMALL_STATE(2006)] = 68113, - [SMALL_STATE(2007)] = 68132, - [SMALL_STATE(2008)] = 68151, - [SMALL_STATE(2009)] = 68170, - [SMALL_STATE(2010)] = 68189, - [SMALL_STATE(2011)] = 68208, - [SMALL_STATE(2012)] = 68227, - [SMALL_STATE(2013)] = 68246, - [SMALL_STATE(2014)] = 68265, - [SMALL_STATE(2015)] = 68284, - [SMALL_STATE(2016)] = 68303, - [SMALL_STATE(2017)] = 68322, - [SMALL_STATE(2018)] = 68337, - [SMALL_STATE(2019)] = 68356, - [SMALL_STATE(2020)] = 68375, - [SMALL_STATE(2021)] = 68394, - [SMALL_STATE(2022)] = 68413, - [SMALL_STATE(2023)] = 68432, - [SMALL_STATE(2024)] = 68451, - [SMALL_STATE(2025)] = 68470, - [SMALL_STATE(2026)] = 68489, - [SMALL_STATE(2027)] = 68508, - [SMALL_STATE(2028)] = 68527, - [SMALL_STATE(2029)] = 68546, - [SMALL_STATE(2030)] = 68565, - [SMALL_STATE(2031)] = 68584, - [SMALL_STATE(2032)] = 68603, - [SMALL_STATE(2033)] = 68622, - [SMALL_STATE(2034)] = 68641, - [SMALL_STATE(2035)] = 68660, - [SMALL_STATE(2036)] = 68679, - [SMALL_STATE(2037)] = 68698, - [SMALL_STATE(2038)] = 68717, - [SMALL_STATE(2039)] = 68736, - [SMALL_STATE(2040)] = 68755, - [SMALL_STATE(2041)] = 68774, - [SMALL_STATE(2042)] = 68793, - [SMALL_STATE(2043)] = 68812, - [SMALL_STATE(2044)] = 68831, - [SMALL_STATE(2045)] = 68850, - [SMALL_STATE(2046)] = 68869, - [SMALL_STATE(2047)] = 68888, - [SMALL_STATE(2048)] = 68907, - [SMALL_STATE(2049)] = 68926, - [SMALL_STATE(2050)] = 68945, - [SMALL_STATE(2051)] = 68964, - [SMALL_STATE(2052)] = 68983, - [SMALL_STATE(2053)] = 69002, - [SMALL_STATE(2054)] = 69021, - [SMALL_STATE(2055)] = 69036, - [SMALL_STATE(2056)] = 69055, - [SMALL_STATE(2057)] = 69074, - [SMALL_STATE(2058)] = 69093, - [SMALL_STATE(2059)] = 69109, - [SMALL_STATE(2060)] = 69119, - [SMALL_STATE(2061)] = 69133, - [SMALL_STATE(2062)] = 69149, - [SMALL_STATE(2063)] = 69163, - [SMALL_STATE(2064)] = 69179, - [SMALL_STATE(2065)] = 69195, - [SMALL_STATE(2066)] = 69211, - [SMALL_STATE(2067)] = 69227, - [SMALL_STATE(2068)] = 69243, - [SMALL_STATE(2069)] = 69259, - [SMALL_STATE(2070)] = 69275, - [SMALL_STATE(2071)] = 69291, - [SMALL_STATE(2072)] = 69305, - [SMALL_STATE(2073)] = 69321, - [SMALL_STATE(2074)] = 69337, - [SMALL_STATE(2075)] = 69350, - [SMALL_STATE(2076)] = 69363, - [SMALL_STATE(2077)] = 69376, - [SMALL_STATE(2078)] = 69389, - [SMALL_STATE(2079)] = 69402, - [SMALL_STATE(2080)] = 69415, - [SMALL_STATE(2081)] = 69428, - [SMALL_STATE(2082)] = 69441, - [SMALL_STATE(2083)] = 69454, - [SMALL_STATE(2084)] = 69467, - [SMALL_STATE(2085)] = 69478, - [SMALL_STATE(2086)] = 69491, - [SMALL_STATE(2087)] = 69504, - [SMALL_STATE(2088)] = 69513, - [SMALL_STATE(2089)] = 69526, - [SMALL_STATE(2090)] = 69539, - [SMALL_STATE(2091)] = 69552, - [SMALL_STATE(2092)] = 69565, - [SMALL_STATE(2093)] = 69578, - [SMALL_STATE(2094)] = 69591, - [SMALL_STATE(2095)] = 69604, - [SMALL_STATE(2096)] = 69617, - [SMALL_STATE(2097)] = 69630, - [SMALL_STATE(2098)] = 69643, - [SMALL_STATE(2099)] = 69656, - [SMALL_STATE(2100)] = 69669, - [SMALL_STATE(2101)] = 69682, - [SMALL_STATE(2102)] = 69695, - [SMALL_STATE(2103)] = 69708, - [SMALL_STATE(2104)] = 69721, - [SMALL_STATE(2105)] = 69734, - [SMALL_STATE(2106)] = 69747, - [SMALL_STATE(2107)] = 69760, - [SMALL_STATE(2108)] = 69773, - [SMALL_STATE(2109)] = 69786, - [SMALL_STATE(2110)] = 69799, - [SMALL_STATE(2111)] = 69812, - [SMALL_STATE(2112)] = 69825, - [SMALL_STATE(2113)] = 69838, - [SMALL_STATE(2114)] = 69851, - [SMALL_STATE(2115)] = 69864, - [SMALL_STATE(2116)] = 69877, - [SMALL_STATE(2117)] = 69890, - [SMALL_STATE(2118)] = 69903, - [SMALL_STATE(2119)] = 69916, - [SMALL_STATE(2120)] = 69929, - [SMALL_STATE(2121)] = 69942, - [SMALL_STATE(2122)] = 69955, - [SMALL_STATE(2123)] = 69968, - [SMALL_STATE(2124)] = 69981, - [SMALL_STATE(2125)] = 69994, - [SMALL_STATE(2126)] = 70007, - [SMALL_STATE(2127)] = 70020, - [SMALL_STATE(2128)] = 70033, - [SMALL_STATE(2129)] = 70046, - [SMALL_STATE(2130)] = 70059, - [SMALL_STATE(2131)] = 70072, - [SMALL_STATE(2132)] = 70085, - [SMALL_STATE(2133)] = 70098, - [SMALL_STATE(2134)] = 70111, - [SMALL_STATE(2135)] = 70124, - [SMALL_STATE(2136)] = 70137, - [SMALL_STATE(2137)] = 70150, - [SMALL_STATE(2138)] = 70163, - [SMALL_STATE(2139)] = 70176, - [SMALL_STATE(2140)] = 70189, - [SMALL_STATE(2141)] = 70202, - [SMALL_STATE(2142)] = 70215, - [SMALL_STATE(2143)] = 70228, - [SMALL_STATE(2144)] = 70241, - [SMALL_STATE(2145)] = 70254, - [SMALL_STATE(2146)] = 70267, - [SMALL_STATE(2147)] = 70280, - [SMALL_STATE(2148)] = 70293, - [SMALL_STATE(2149)] = 70306, - [SMALL_STATE(2150)] = 70319, - [SMALL_STATE(2151)] = 70332, - [SMALL_STATE(2152)] = 70345, - [SMALL_STATE(2153)] = 70358, - [SMALL_STATE(2154)] = 70371, - [SMALL_STATE(2155)] = 70384, - [SMALL_STATE(2156)] = 70397, - [SMALL_STATE(2157)] = 70410, - [SMALL_STATE(2158)] = 70423, - [SMALL_STATE(2159)] = 70436, - [SMALL_STATE(2160)] = 70449, - [SMALL_STATE(2161)] = 70462, - [SMALL_STATE(2162)] = 70475, - [SMALL_STATE(2163)] = 70488, - [SMALL_STATE(2164)] = 70501, - [SMALL_STATE(2165)] = 70514, - [SMALL_STATE(2166)] = 70527, - [SMALL_STATE(2167)] = 70540, - [SMALL_STATE(2168)] = 70553, - [SMALL_STATE(2169)] = 70566, - [SMALL_STATE(2170)] = 70579, - [SMALL_STATE(2171)] = 70592, - [SMALL_STATE(2172)] = 70605, - [SMALL_STATE(2173)] = 70618, - [SMALL_STATE(2174)] = 70631, - [SMALL_STATE(2175)] = 70644, - [SMALL_STATE(2176)] = 70657, - [SMALL_STATE(2177)] = 70670, - [SMALL_STATE(2178)] = 70683, - [SMALL_STATE(2179)] = 70696, - [SMALL_STATE(2180)] = 70709, - [SMALL_STATE(2181)] = 70718, - [SMALL_STATE(2182)] = 70731, - [SMALL_STATE(2183)] = 70744, - [SMALL_STATE(2184)] = 70757, - [SMALL_STATE(2185)] = 70770, - [SMALL_STATE(2186)] = 70783, - [SMALL_STATE(2187)] = 70796, - [SMALL_STATE(2188)] = 70809, - [SMALL_STATE(2189)] = 70822, - [SMALL_STATE(2190)] = 70835, - [SMALL_STATE(2191)] = 70848, - [SMALL_STATE(2192)] = 70861, - [SMALL_STATE(2193)] = 70874, - [SMALL_STATE(2194)] = 70883, - [SMALL_STATE(2195)] = 70892, - [SMALL_STATE(2196)] = 70905, - [SMALL_STATE(2197)] = 70918, - [SMALL_STATE(2198)] = 70931, - [SMALL_STATE(2199)] = 70940, - [SMALL_STATE(2200)] = 70953, - [SMALL_STATE(2201)] = 70966, - [SMALL_STATE(2202)] = 70979, - [SMALL_STATE(2203)] = 70992, - [SMALL_STATE(2204)] = 71005, - [SMALL_STATE(2205)] = 71018, - [SMALL_STATE(2206)] = 71031, - [SMALL_STATE(2207)] = 71044, - [SMALL_STATE(2208)] = 71057, - [SMALL_STATE(2209)] = 71070, - [SMALL_STATE(2210)] = 71083, - [SMALL_STATE(2211)] = 71096, - [SMALL_STATE(2212)] = 71109, - [SMALL_STATE(2213)] = 71122, - [SMALL_STATE(2214)] = 71135, - [SMALL_STATE(2215)] = 71148, - [SMALL_STATE(2216)] = 71161, - [SMALL_STATE(2217)] = 71174, - [SMALL_STATE(2218)] = 71187, - [SMALL_STATE(2219)] = 71200, - [SMALL_STATE(2220)] = 71213, - [SMALL_STATE(2221)] = 71226, - [SMALL_STATE(2222)] = 71239, - [SMALL_STATE(2223)] = 71252, - [SMALL_STATE(2224)] = 71260, - [SMALL_STATE(2225)] = 71268, - [SMALL_STATE(2226)] = 71278, - [SMALL_STATE(2227)] = 71288, - [SMALL_STATE(2228)] = 71298, - [SMALL_STATE(2229)] = 71306, - [SMALL_STATE(2230)] = 71314, - [SMALL_STATE(2231)] = 71324, - [SMALL_STATE(2232)] = 71332, - [SMALL_STATE(2233)] = 71342, - [SMALL_STATE(2234)] = 71352, - [SMALL_STATE(2235)] = 71362, - [SMALL_STATE(2236)] = 71370, - [SMALL_STATE(2237)] = 71380, - [SMALL_STATE(2238)] = 71390, - [SMALL_STATE(2239)] = 71400, - [SMALL_STATE(2240)] = 71410, - [SMALL_STATE(2241)] = 71420, - [SMALL_STATE(2242)] = 71430, - [SMALL_STATE(2243)] = 71440, - [SMALL_STATE(2244)] = 71448, - [SMALL_STATE(2245)] = 71458, - [SMALL_STATE(2246)] = 71468, - [SMALL_STATE(2247)] = 71478, - [SMALL_STATE(2248)] = 71488, - [SMALL_STATE(2249)] = 71498, - [SMALL_STATE(2250)] = 71508, - [SMALL_STATE(2251)] = 71516, - [SMALL_STATE(2252)] = 71524, - [SMALL_STATE(2253)] = 71534, - [SMALL_STATE(2254)] = 71544, - [SMALL_STATE(2255)] = 71554, - [SMALL_STATE(2256)] = 71564, - [SMALL_STATE(2257)] = 71574, - [SMALL_STATE(2258)] = 71584, - [SMALL_STATE(2259)] = 71594, - [SMALL_STATE(2260)] = 71604, - [SMALL_STATE(2261)] = 71614, - [SMALL_STATE(2262)] = 71622, - [SMALL_STATE(2263)] = 71632, - [SMALL_STATE(2264)] = 71642, - [SMALL_STATE(2265)] = 71652, - [SMALL_STATE(2266)] = 71662, - [SMALL_STATE(2267)] = 71672, - [SMALL_STATE(2268)] = 71682, - [SMALL_STATE(2269)] = 71692, - [SMALL_STATE(2270)] = 71702, - [SMALL_STATE(2271)] = 71712, - [SMALL_STATE(2272)] = 71722, - [SMALL_STATE(2273)] = 71732, - [SMALL_STATE(2274)] = 71742, - [SMALL_STATE(2275)] = 71752, - [SMALL_STATE(2276)] = 71762, - [SMALL_STATE(2277)] = 71772, - [SMALL_STATE(2278)] = 71780, - [SMALL_STATE(2279)] = 71790, - [SMALL_STATE(2280)] = 71798, - [SMALL_STATE(2281)] = 71808, - [SMALL_STATE(2282)] = 71818, - [SMALL_STATE(2283)] = 71828, - [SMALL_STATE(2284)] = 71836, - [SMALL_STATE(2285)] = 71846, - [SMALL_STATE(2286)] = 71856, - [SMALL_STATE(2287)] = 71866, - [SMALL_STATE(2288)] = 71876, - [SMALL_STATE(2289)] = 71886, - [SMALL_STATE(2290)] = 71896, - [SMALL_STATE(2291)] = 71904, - [SMALL_STATE(2292)] = 71914, - [SMALL_STATE(2293)] = 71924, - [SMALL_STATE(2294)] = 71934, - [SMALL_STATE(2295)] = 71944, - [SMALL_STATE(2296)] = 71954, - [SMALL_STATE(2297)] = 71964, - [SMALL_STATE(2298)] = 71974, - [SMALL_STATE(2299)] = 71984, - [SMALL_STATE(2300)] = 71994, - [SMALL_STATE(2301)] = 72004, - [SMALL_STATE(2302)] = 72014, - [SMALL_STATE(2303)] = 72024, - [SMALL_STATE(2304)] = 72034, - [SMALL_STATE(2305)] = 72044, - [SMALL_STATE(2306)] = 72054, - [SMALL_STATE(2307)] = 72062, - [SMALL_STATE(2308)] = 72072, - [SMALL_STATE(2309)] = 72080, - [SMALL_STATE(2310)] = 72087, - [SMALL_STATE(2311)] = 72094, - [SMALL_STATE(2312)] = 72101, - [SMALL_STATE(2313)] = 72108, - [SMALL_STATE(2314)] = 72115, - [SMALL_STATE(2315)] = 72122, - [SMALL_STATE(2316)] = 72129, - [SMALL_STATE(2317)] = 72136, - [SMALL_STATE(2318)] = 72143, - [SMALL_STATE(2319)] = 72150, - [SMALL_STATE(2320)] = 72157, - [SMALL_STATE(2321)] = 72164, - [SMALL_STATE(2322)] = 72171, - [SMALL_STATE(2323)] = 72178, - [SMALL_STATE(2324)] = 72185, - [SMALL_STATE(2325)] = 72192, - [SMALL_STATE(2326)] = 72199, - [SMALL_STATE(2327)] = 72206, - [SMALL_STATE(2328)] = 72213, - [SMALL_STATE(2329)] = 72220, - [SMALL_STATE(2330)] = 72227, - [SMALL_STATE(2331)] = 72234, - [SMALL_STATE(2332)] = 72241, - [SMALL_STATE(2333)] = 72248, - [SMALL_STATE(2334)] = 72255, - [SMALL_STATE(2335)] = 72262, - [SMALL_STATE(2336)] = 72269, - [SMALL_STATE(2337)] = 72276, - [SMALL_STATE(2338)] = 72283, - [SMALL_STATE(2339)] = 72290, - [SMALL_STATE(2340)] = 72297, - [SMALL_STATE(2341)] = 72304, - [SMALL_STATE(2342)] = 72311, - [SMALL_STATE(2343)] = 72318, - [SMALL_STATE(2344)] = 72325, - [SMALL_STATE(2345)] = 72332, - [SMALL_STATE(2346)] = 72339, - [SMALL_STATE(2347)] = 72346, - [SMALL_STATE(2348)] = 72353, - [SMALL_STATE(2349)] = 72360, - [SMALL_STATE(2350)] = 72367, - [SMALL_STATE(2351)] = 72374, - [SMALL_STATE(2352)] = 72381, - [SMALL_STATE(2353)] = 72388, - [SMALL_STATE(2354)] = 72395, - [SMALL_STATE(2355)] = 72402, - [SMALL_STATE(2356)] = 72409, - [SMALL_STATE(2357)] = 72416, - [SMALL_STATE(2358)] = 72423, - [SMALL_STATE(2359)] = 72430, - [SMALL_STATE(2360)] = 72437, - [SMALL_STATE(2361)] = 72444, - [SMALL_STATE(2362)] = 72451, - [SMALL_STATE(2363)] = 72458, - [SMALL_STATE(2364)] = 72465, - [SMALL_STATE(2365)] = 72472, - [SMALL_STATE(2366)] = 72479, - [SMALL_STATE(2367)] = 72486, - [SMALL_STATE(2368)] = 72493, - [SMALL_STATE(2369)] = 72500, - [SMALL_STATE(2370)] = 72507, - [SMALL_STATE(2371)] = 72514, - [SMALL_STATE(2372)] = 72521, - [SMALL_STATE(2373)] = 72528, - [SMALL_STATE(2374)] = 72535, - [SMALL_STATE(2375)] = 72542, - [SMALL_STATE(2376)] = 72549, - [SMALL_STATE(2377)] = 72556, - [SMALL_STATE(2378)] = 72563, - [SMALL_STATE(2379)] = 72570, - [SMALL_STATE(2380)] = 72577, - [SMALL_STATE(2381)] = 72584, - [SMALL_STATE(2382)] = 72591, - [SMALL_STATE(2383)] = 72598, - [SMALL_STATE(2384)] = 72605, - [SMALL_STATE(2385)] = 72612, - [SMALL_STATE(2386)] = 72619, - [SMALL_STATE(2387)] = 72626, - [SMALL_STATE(2388)] = 72633, - [SMALL_STATE(2389)] = 72640, - [SMALL_STATE(2390)] = 72647, - [SMALL_STATE(2391)] = 72654, - [SMALL_STATE(2392)] = 72661, - [SMALL_STATE(2393)] = 72668, - [SMALL_STATE(2394)] = 72675, - [SMALL_STATE(2395)] = 72682, - [SMALL_STATE(2396)] = 72689, - [SMALL_STATE(2397)] = 72696, - [SMALL_STATE(2398)] = 72703, - [SMALL_STATE(2399)] = 72710, - [SMALL_STATE(2400)] = 72717, - [SMALL_STATE(2401)] = 72724, + [SMALL_STATE(841)] = 0, + [SMALL_STATE(842)] = 75, + [SMALL_STATE(843)] = 150, + [SMALL_STATE(844)] = 225, + [SMALL_STATE(845)] = 361, + [SMALL_STATE(846)] = 497, + [SMALL_STATE(847)] = 605, + [SMALL_STATE(848)] = 713, + [SMALL_STATE(849)] = 849, + [SMALL_STATE(850)] = 985, + [SMALL_STATE(851)] = 1121, + [SMALL_STATE(852)] = 1257, + [SMALL_STATE(853)] = 1363, + [SMALL_STATE(854)] = 1469, + [SMALL_STATE(855)] = 1605, + [SMALL_STATE(856)] = 1711, + [SMALL_STATE(857)] = 1847, + [SMALL_STATE(858)] = 1955, + [SMALL_STATE(859)] = 2091, + [SMALL_STATE(860)] = 2227, + [SMALL_STATE(861)] = 2363, + [SMALL_STATE(862)] = 2499, + [SMALL_STATE(863)] = 2635, + [SMALL_STATE(864)] = 2771, + [SMALL_STATE(865)] = 2907, + [SMALL_STATE(866)] = 3043, + [SMALL_STATE(867)] = 3179, + [SMALL_STATE(868)] = 3315, + [SMALL_STATE(869)] = 3451, + [SMALL_STATE(870)] = 3536, + [SMALL_STATE(871)] = 3605, + [SMALL_STATE(872)] = 3674, + [SMALL_STATE(873)] = 3743, + [SMALL_STATE(874)] = 3812, + [SMALL_STATE(875)] = 3881, + [SMALL_STATE(876)] = 3950, + [SMALL_STATE(877)] = 4051, + [SMALL_STATE(878)] = 4120, + [SMALL_STATE(879)] = 4189, + [SMALL_STATE(880)] = 4258, + [SMALL_STATE(881)] = 4361, + [SMALL_STATE(882)] = 4430, + [SMALL_STATE(883)] = 4533, + [SMALL_STATE(884)] = 4602, + [SMALL_STATE(885)] = 4671, + [SMALL_STATE(886)] = 4756, + [SMALL_STATE(887)] = 4859, + [SMALL_STATE(888)] = 4938, + [SMALL_STATE(889)] = 5007, + [SMALL_STATE(890)] = 5106, + [SMALL_STATE(891)] = 5175, + [SMALL_STATE(892)] = 5244, + [SMALL_STATE(893)] = 5313, + [SMALL_STATE(894)] = 5382, + [SMALL_STATE(895)] = 5451, + [SMALL_STATE(896)] = 5536, + [SMALL_STATE(897)] = 5605, + [SMALL_STATE(898)] = 5674, + [SMALL_STATE(899)] = 5769, + [SMALL_STATE(900)] = 5838, + [SMALL_STATE(901)] = 5917, + [SMALL_STATE(902)] = 6020, + [SMALL_STATE(903)] = 6105, + [SMALL_STATE(904)] = 6188, + [SMALL_STATE(905)] = 6275, + [SMALL_STATE(906)] = 6364, + [SMALL_STATE(907)] = 6466, + [SMALL_STATE(908)] = 6568, + [SMALL_STATE(909)] = 6670, + [SMALL_STATE(910)] = 6772, + [SMALL_STATE(911)] = 6840, + [SMALL_STATE(912)] = 6918, + [SMALL_STATE(913)] = 7002, + [SMALL_STATE(914)] = 7084, + [SMALL_STATE(915)] = 7170, + [SMALL_STATE(916)] = 7252, + [SMALL_STATE(917)] = 7340, + [SMALL_STATE(918)] = 7434, + [SMALL_STATE(919)] = 7532, + [SMALL_STATE(920)] = 7614, + [SMALL_STATE(921)] = 7714, + [SMALL_STATE(922)] = 7796, + [SMALL_STATE(923)] = 7878, + [SMALL_STATE(924)] = 7956, + [SMALL_STATE(925)] = 8040, + [SMALL_STATE(926)] = 8124, + [SMALL_STATE(927)] = 8208, + [SMALL_STATE(928)] = 8285, + [SMALL_STATE(929)] = 8362, + [SMALL_STATE(930)] = 8443, + [SMALL_STATE(931)] = 8518, + [SMALL_STATE(932)] = 8595, + [SMALL_STATE(933)] = 8672, + [SMALL_STATE(934)] = 8749, + [SMALL_STATE(935)] = 8826, + [SMALL_STATE(936)] = 8903, + [SMALL_STATE(937)] = 8984, + [SMALL_STATE(938)] = 9061, + [SMALL_STATE(939)] = 9138, + [SMALL_STATE(940)] = 9219, + [SMALL_STATE(941)] = 9290, + [SMALL_STATE(942)] = 9371, + [SMALL_STATE(943)] = 9440, + [SMALL_STATE(944)] = 9511, + [SMALL_STATE(945)] = 9588, + [SMALL_STATE(946)] = 9665, + [SMALL_STATE(947)] = 9736, + [SMALL_STATE(948)] = 9813, + [SMALL_STATE(949)] = 9890, + [SMALL_STATE(950)] = 9966, + [SMALL_STATE(951)] = 10042, + [SMALL_STATE(952)] = 10110, + [SMALL_STATE(953)] = 10180, + [SMALL_STATE(954)] = 10250, + [SMALL_STATE(955)] = 10326, + [SMALL_STATE(956)] = 10402, + [SMALL_STATE(957)] = 10478, + [SMALL_STATE(958)] = 10554, + [SMALL_STATE(959)] = 10630, + [SMALL_STATE(960)] = 10706, + [SMALL_STATE(961)] = 10782, + [SMALL_STATE(962)] = 10858, + [SMALL_STATE(963)] = 10934, + [SMALL_STATE(964)] = 11010, + [SMALL_STATE(965)] = 11086, + [SMALL_STATE(966)] = 11162, + [SMALL_STATE(967)] = 11238, + [SMALL_STATE(968)] = 11314, + [SMALL_STATE(969)] = 11390, + [SMALL_STATE(970)] = 11494, + [SMALL_STATE(971)] = 11570, + [SMALL_STATE(972)] = 11646, + [SMALL_STATE(973)] = 11722, + [SMALL_STATE(974)] = 11798, + [SMALL_STATE(975)] = 11874, + [SMALL_STATE(976)] = 11950, + [SMALL_STATE(977)] = 12026, + [SMALL_STATE(978)] = 12096, + [SMALL_STATE(979)] = 12172, + [SMALL_STATE(980)] = 12248, + [SMALL_STATE(981)] = 12324, + [SMALL_STATE(982)] = 12400, + [SMALL_STATE(983)] = 12476, + [SMALL_STATE(984)] = 12552, + [SMALL_STATE(985)] = 12628, + [SMALL_STATE(986)] = 12704, + [SMALL_STATE(987)] = 12779, + [SMALL_STATE(988)] = 12854, + [SMALL_STATE(989)] = 12919, + [SMALL_STATE(990)] = 12984, + [SMALL_STATE(991)] = 13053, + [SMALL_STATE(992)] = 13128, + [SMALL_STATE(993)] = 13193, + [SMALL_STATE(994)] = 13262, + [SMALL_STATE(995)] = 13331, + [SMALL_STATE(996)] = 13400, + [SMALL_STATE(997)] = 13475, + [SMALL_STATE(998)] = 13544, + [SMALL_STATE(999)] = 13609, + [SMALL_STATE(1000)] = 13684, + [SMALL_STATE(1001)] = 13749, + [SMALL_STATE(1002)] = 13814, + [SMALL_STATE(1003)] = 13889, + [SMALL_STATE(1004)] = 13964, + [SMALL_STATE(1005)] = 14039, + [SMALL_STATE(1006)] = 14114, + [SMALL_STATE(1007)] = 14189, + [SMALL_STATE(1008)] = 14254, + [SMALL_STATE(1009)] = 14319, + [SMALL_STATE(1010)] = 14386, + [SMALL_STATE(1011)] = 14451, + [SMALL_STATE(1012)] = 14516, + [SMALL_STATE(1013)] = 14591, + [SMALL_STATE(1014)] = 14658, + [SMALL_STATE(1015)] = 14725, + [SMALL_STATE(1016)] = 14790, + [SMALL_STATE(1017)] = 14857, + [SMALL_STATE(1018)] = 14930, + [SMALL_STATE(1019)] = 14995, + [SMALL_STATE(1020)] = 15060, + [SMALL_STATE(1021)] = 15165, + [SMALL_STATE(1022)] = 15270, + [SMALL_STATE(1023)] = 15375, + [SMALL_STATE(1024)] = 15444, + [SMALL_STATE(1025)] = 15509, + [SMALL_STATE(1026)] = 15584, + [SMALL_STATE(1027)] = 15649, + [SMALL_STATE(1028)] = 15718, + [SMALL_STATE(1029)] = 15793, + [SMALL_STATE(1030)] = 15858, + [SMALL_STATE(1031)] = 15927, + [SMALL_STATE(1032)] = 15996, + [SMALL_STATE(1033)] = 16060, + [SMALL_STATE(1034)] = 16124, + [SMALL_STATE(1035)] = 16188, + [SMALL_STATE(1036)] = 16252, + [SMALL_STATE(1037)] = 16316, + [SMALL_STATE(1038)] = 16380, + [SMALL_STATE(1039)] = 16448, + [SMALL_STATE(1040)] = 16512, + [SMALL_STATE(1041)] = 16576, + [SMALL_STATE(1042)] = 16640, + [SMALL_STATE(1043)] = 16704, + [SMALL_STATE(1044)] = 16768, + [SMALL_STATE(1045)] = 16832, + [SMALL_STATE(1046)] = 16904, + [SMALL_STATE(1047)] = 16968, + [SMALL_STATE(1048)] = 17032, + [SMALL_STATE(1049)] = 17096, + [SMALL_STATE(1050)] = 17160, + [SMALL_STATE(1051)] = 17224, + [SMALL_STATE(1052)] = 17288, + [SMALL_STATE(1053)] = 17352, + [SMALL_STATE(1054)] = 17416, + [SMALL_STATE(1055)] = 17480, + [SMALL_STATE(1056)] = 17544, + [SMALL_STATE(1057)] = 17610, + [SMALL_STATE(1058)] = 17674, + [SMALL_STATE(1059)] = 17738, + [SMALL_STATE(1060)] = 17802, + [SMALL_STATE(1061)] = 17866, + [SMALL_STATE(1062)] = 17930, + [SMALL_STATE(1063)] = 17994, + [SMALL_STATE(1064)] = 18058, + [SMALL_STATE(1065)] = 18122, + [SMALL_STATE(1066)] = 18190, + [SMALL_STATE(1067)] = 18254, + [SMALL_STATE(1068)] = 18318, + [SMALL_STATE(1069)] = 18382, + [SMALL_STATE(1070)] = 18446, + [SMALL_STATE(1071)] = 18510, + [SMALL_STATE(1072)] = 18574, + [SMALL_STATE(1073)] = 18638, + [SMALL_STATE(1074)] = 18702, + [SMALL_STATE(1075)] = 18766, + [SMALL_STATE(1076)] = 18830, + [SMALL_STATE(1077)] = 18894, + [SMALL_STATE(1078)] = 18958, + [SMALL_STATE(1079)] = 19022, + [SMALL_STATE(1080)] = 19086, + [SMALL_STATE(1081)] = 19150, + [SMALL_STATE(1082)] = 19214, + [SMALL_STATE(1083)] = 19278, + [SMALL_STATE(1084)] = 19342, + [SMALL_STATE(1085)] = 19406, + [SMALL_STATE(1086)] = 19470, + [SMALL_STATE(1087)] = 19534, + [SMALL_STATE(1088)] = 19598, + [SMALL_STATE(1089)] = 19662, + [SMALL_STATE(1090)] = 19726, + [SMALL_STATE(1091)] = 19790, + [SMALL_STATE(1092)] = 19854, + [SMALL_STATE(1093)] = 19918, + [SMALL_STATE(1094)] = 19982, + [SMALL_STATE(1095)] = 20046, + [SMALL_STATE(1096)] = 20110, + [SMALL_STATE(1097)] = 20174, + [SMALL_STATE(1098)] = 20238, + [SMALL_STATE(1099)] = 20302, + [SMALL_STATE(1100)] = 20366, + [SMALL_STATE(1101)] = 20430, + [SMALL_STATE(1102)] = 20494, + [SMALL_STATE(1103)] = 20562, + [SMALL_STATE(1104)] = 20626, + [SMALL_STATE(1105)] = 20690, + [SMALL_STATE(1106)] = 20754, + [SMALL_STATE(1107)] = 20818, + [SMALL_STATE(1108)] = 20882, + [SMALL_STATE(1109)] = 20946, + [SMALL_STATE(1110)] = 21010, + [SMALL_STATE(1111)] = 21074, + [SMALL_STATE(1112)] = 21138, + [SMALL_STATE(1113)] = 21202, + [SMALL_STATE(1114)] = 21266, + [SMALL_STATE(1115)] = 21330, + [SMALL_STATE(1116)] = 21393, + [SMALL_STATE(1117)] = 21456, + [SMALL_STATE(1118)] = 21519, + [SMALL_STATE(1119)] = 21622, + [SMALL_STATE(1120)] = 21725, + [SMALL_STATE(1121)] = 21828, + [SMALL_STATE(1122)] = 21891, + [SMALL_STATE(1123)] = 21954, + [SMALL_STATE(1124)] = 22017, + [SMALL_STATE(1125)] = 22080, + [SMALL_STATE(1126)] = 22143, + [SMALL_STATE(1127)] = 22206, + [SMALL_STATE(1128)] = 22269, + [SMALL_STATE(1129)] = 22332, + [SMALL_STATE(1130)] = 22395, + [SMALL_STATE(1131)] = 22458, + [SMALL_STATE(1132)] = 22521, + [SMALL_STATE(1133)] = 22584, + [SMALL_STATE(1134)] = 22647, + [SMALL_STATE(1135)] = 22710, + [SMALL_STATE(1136)] = 22773, + [SMALL_STATE(1137)] = 22836, + [SMALL_STATE(1138)] = 22899, + [SMALL_STATE(1139)] = 22962, + [SMALL_STATE(1140)] = 23025, + [SMALL_STATE(1141)] = 23088, + [SMALL_STATE(1142)] = 23187, + [SMALL_STATE(1143)] = 23250, + [SMALL_STATE(1144)] = 23313, + [SMALL_STATE(1145)] = 23376, + [SMALL_STATE(1146)] = 23439, + [SMALL_STATE(1147)] = 23502, + [SMALL_STATE(1148)] = 23565, + [SMALL_STATE(1149)] = 23628, + [SMALL_STATE(1150)] = 23691, + [SMALL_STATE(1151)] = 23792, + [SMALL_STATE(1152)] = 23893, + [SMALL_STATE(1153)] = 23956, + [SMALL_STATE(1154)] = 24019, + [SMALL_STATE(1155)] = 24082, + [SMALL_STATE(1156)] = 24183, + [SMALL_STATE(1157)] = 24246, + [SMALL_STATE(1158)] = 24309, + [SMALL_STATE(1159)] = 24372, + [SMALL_STATE(1160)] = 24435, + [SMALL_STATE(1161)] = 24498, + [SMALL_STATE(1162)] = 24561, + [SMALL_STATE(1163)] = 24624, + [SMALL_STATE(1164)] = 24687, + [SMALL_STATE(1165)] = 24750, + [SMALL_STATE(1166)] = 24813, + [SMALL_STATE(1167)] = 24876, + [SMALL_STATE(1168)] = 24939, + [SMALL_STATE(1169)] = 25002, + [SMALL_STATE(1170)] = 25065, + [SMALL_STATE(1171)] = 25128, + [SMALL_STATE(1172)] = 25191, + [SMALL_STATE(1173)] = 25254, + [SMALL_STATE(1174)] = 25317, + [SMALL_STATE(1175)] = 25380, + [SMALL_STATE(1176)] = 25443, + [SMALL_STATE(1177)] = 25506, + [SMALL_STATE(1178)] = 25569, + [SMALL_STATE(1179)] = 25632, + [SMALL_STATE(1180)] = 25695, + [SMALL_STATE(1181)] = 25758, + [SMALL_STATE(1182)] = 25821, + [SMALL_STATE(1183)] = 25884, + [SMALL_STATE(1184)] = 25947, + [SMALL_STATE(1185)] = 26010, + [SMALL_STATE(1186)] = 26073, + [SMALL_STATE(1187)] = 26136, + [SMALL_STATE(1188)] = 26199, + [SMALL_STATE(1189)] = 26262, + [SMALL_STATE(1190)] = 26325, + [SMALL_STATE(1191)] = 26388, + [SMALL_STATE(1192)] = 26451, + [SMALL_STATE(1193)] = 26514, + [SMALL_STATE(1194)] = 26577, + [SMALL_STATE(1195)] = 26640, + [SMALL_STATE(1196)] = 26703, + [SMALL_STATE(1197)] = 26766, + [SMALL_STATE(1198)] = 26829, + [SMALL_STATE(1199)] = 26892, + [SMALL_STATE(1200)] = 26955, + [SMALL_STATE(1201)] = 27018, + [SMALL_STATE(1202)] = 27081, + [SMALL_STATE(1203)] = 27144, + [SMALL_STATE(1204)] = 27207, + [SMALL_STATE(1205)] = 27270, + [SMALL_STATE(1206)] = 27333, + [SMALL_STATE(1207)] = 27396, + [SMALL_STATE(1208)] = 27459, + [SMALL_STATE(1209)] = 27522, + [SMALL_STATE(1210)] = 27585, + [SMALL_STATE(1211)] = 27648, + [SMALL_STATE(1212)] = 27738, + [SMALL_STATE(1213)] = 27832, + [SMALL_STATE(1214)] = 27916, + [SMALL_STATE(1215)] = 28014, + [SMALL_STATE(1216)] = 28094, + [SMALL_STATE(1217)] = 28166, + [SMALL_STATE(1218)] = 28242, + [SMALL_STATE(1219)] = 28340, + [SMALL_STATE(1220)] = 28412, + [SMALL_STATE(1221)] = 28508, + [SMALL_STATE(1222)] = 28606, + [SMALL_STATE(1223)] = 28704, + [SMALL_STATE(1224)] = 28801, + [SMALL_STATE(1225)] = 28894, + [SMALL_STATE(1226)] = 28965, + [SMALL_STATE(1227)] = 29062, + [SMALL_STATE(1228)] = 29133, + [SMALL_STATE(1229)] = 29230, + [SMALL_STATE(1230)] = 29327, + [SMALL_STATE(1231)] = 29422, + [SMALL_STATE(1232)] = 29519, + [SMALL_STATE(1233)] = 29616, + [SMALL_STATE(1234)] = 29713, + [SMALL_STATE(1235)] = 29810, + [SMALL_STATE(1236)] = 29907, + [SMALL_STATE(1237)] = 29982, + [SMALL_STATE(1238)] = 30079, + [SMALL_STATE(1239)] = 30176, + [SMALL_STATE(1240)] = 30255, + [SMALL_STATE(1241)] = 30344, + [SMALL_STATE(1242)] = 30427, + [SMALL_STATE(1243)] = 30524, + [SMALL_STATE(1244)] = 30621, + [SMALL_STATE(1245)] = 30684, + [SMALL_STATE(1246)] = 30745, + [SMALL_STATE(1247)] = 30808, + [SMALL_STATE(1248)] = 30870, + [SMALL_STATE(1249)] = 30932, + [SMALL_STATE(1250)] = 30992, + [SMALL_STATE(1251)] = 31049, + [SMALL_STATE(1252)] = 31106, + [SMALL_STATE(1253)] = 31163, + [SMALL_STATE(1254)] = 31220, + [SMALL_STATE(1255)] = 31277, + [SMALL_STATE(1256)] = 31334, + [SMALL_STATE(1257)] = 31391, + [SMALL_STATE(1258)] = 31448, + [SMALL_STATE(1259)] = 31505, + [SMALL_STATE(1260)] = 31562, + [SMALL_STATE(1261)] = 31619, + [SMALL_STATE(1262)] = 31675, + [SMALL_STATE(1263)] = 31731, + [SMALL_STATE(1264)] = 31787, + [SMALL_STATE(1265)] = 31843, + [SMALL_STATE(1266)] = 31899, + [SMALL_STATE(1267)] = 31961, + [SMALL_STATE(1268)] = 32017, + [SMALL_STATE(1269)] = 32073, + [SMALL_STATE(1270)] = 32129, + [SMALL_STATE(1271)] = 32185, + [SMALL_STATE(1272)] = 32241, + [SMALL_STATE(1273)] = 32297, + [SMALL_STATE(1274)] = 32358, + [SMALL_STATE(1275)] = 32419, + [SMALL_STATE(1276)] = 32480, + [SMALL_STATE(1277)] = 32534, + [SMALL_STATE(1278)] = 32604, + [SMALL_STATE(1279)] = 32664, + [SMALL_STATE(1280)] = 32724, + [SMALL_STATE(1281)] = 32794, + [SMALL_STATE(1282)] = 32854, + [SMALL_STATE(1283)] = 32924, + [SMALL_STATE(1284)] = 32994, + [SMALL_STATE(1285)] = 33066, + [SMALL_STATE(1286)] = 33119, + [SMALL_STATE(1287)] = 33172, + [SMALL_STATE(1288)] = 33225, + [SMALL_STATE(1289)] = 33292, + [SMALL_STATE(1290)] = 33345, + [SMALL_STATE(1291)] = 33398, + [SMALL_STATE(1292)] = 33459, + [SMALL_STATE(1293)] = 33526, + [SMALL_STATE(1294)] = 33593, + [SMALL_STATE(1295)] = 33646, + [SMALL_STATE(1296)] = 33699, + [SMALL_STATE(1297)] = 33766, + [SMALL_STATE(1298)] = 33833, + [SMALL_STATE(1299)] = 33886, + [SMALL_STATE(1300)] = 33939, + [SMALL_STATE(1301)] = 33992, + [SMALL_STATE(1302)] = 34045, + [SMALL_STATE(1303)] = 34112, + [SMALL_STATE(1304)] = 34165, + [SMALL_STATE(1305)] = 34232, + [SMALL_STATE(1306)] = 34285, + [SMALL_STATE(1307)] = 34352, + [SMALL_STATE(1308)] = 34405, + [SMALL_STATE(1309)] = 34461, + [SMALL_STATE(1310)] = 34523, + [SMALL_STATE(1311)] = 34585, + [SMALL_STATE(1312)] = 34647, + [SMALL_STATE(1313)] = 34709, + [SMALL_STATE(1314)] = 34765, + [SMALL_STATE(1315)] = 34827, + [SMALL_STATE(1316)] = 34889, + [SMALL_STATE(1317)] = 34951, + [SMALL_STATE(1318)] = 35013, + [SMALL_STATE(1319)] = 35075, + [SMALL_STATE(1320)] = 35137, + [SMALL_STATE(1321)] = 35199, + [SMALL_STATE(1322)] = 35261, + [SMALL_STATE(1323)] = 35323, + [SMALL_STATE(1324)] = 35384, + [SMALL_STATE(1325)] = 35439, + [SMALL_STATE(1326)] = 35500, + [SMALL_STATE(1327)] = 35561, + [SMALL_STATE(1328)] = 35622, + [SMALL_STATE(1329)] = 35683, + [SMALL_STATE(1330)] = 35744, + [SMALL_STATE(1331)] = 35805, + [SMALL_STATE(1332)] = 35866, + [SMALL_STATE(1333)] = 35927, + [SMALL_STATE(1334)] = 35988, + [SMALL_STATE(1335)] = 36049, + [SMALL_STATE(1336)] = 36110, + [SMALL_STATE(1337)] = 36171, + [SMALL_STATE(1338)] = 36226, + [SMALL_STATE(1339)] = 36287, + [SMALL_STATE(1340)] = 36348, + [SMALL_STATE(1341)] = 36409, + [SMALL_STATE(1342)] = 36459, + [SMALL_STATE(1343)] = 36513, + [SMALL_STATE(1344)] = 36565, + [SMALL_STATE(1345)] = 36617, + [SMALL_STATE(1346)] = 36671, + [SMALL_STATE(1347)] = 36725, + [SMALL_STATE(1348)] = 36775, + [SMALL_STATE(1349)] = 36829, + [SMALL_STATE(1350)] = 36887, + [SMALL_STATE(1351)] = 36941, + [SMALL_STATE(1352)] = 36993, + [SMALL_STATE(1353)] = 37045, + [SMALL_STATE(1354)] = 37095, + [SMALL_STATE(1355)] = 37145, + [SMALL_STATE(1356)] = 37199, + [SMALL_STATE(1357)] = 37249, + [SMALL_STATE(1358)] = 37299, + [SMALL_STATE(1359)] = 37349, + [SMALL_STATE(1360)] = 37403, + [SMALL_STATE(1361)] = 37457, + [SMALL_STATE(1362)] = 37507, + [SMALL_STATE(1363)] = 37561, + [SMALL_STATE(1364)] = 37610, + [SMALL_STATE(1365)] = 37659, + [SMALL_STATE(1366)] = 37708, + [SMALL_STATE(1367)] = 37757, + [SMALL_STATE(1368)] = 37806, + [SMALL_STATE(1369)] = 37855, + [SMALL_STATE(1370)] = 37904, + [SMALL_STATE(1371)] = 37953, + [SMALL_STATE(1372)] = 38002, + [SMALL_STATE(1373)] = 38051, + [SMALL_STATE(1374)] = 38100, + [SMALL_STATE(1375)] = 38149, + [SMALL_STATE(1376)] = 38198, + [SMALL_STATE(1377)] = 38247, + [SMALL_STATE(1378)] = 38296, + [SMALL_STATE(1379)] = 38345, + [SMALL_STATE(1380)] = 38394, + [SMALL_STATE(1381)] = 38443, + [SMALL_STATE(1382)] = 38492, + [SMALL_STATE(1383)] = 38541, + [SMALL_STATE(1384)] = 38590, + [SMALL_STATE(1385)] = 38639, + [SMALL_STATE(1386)] = 38688, + [SMALL_STATE(1387)] = 38737, + [SMALL_STATE(1388)] = 38786, + [SMALL_STATE(1389)] = 38835, + [SMALL_STATE(1390)] = 38884, + [SMALL_STATE(1391)] = 38933, + [SMALL_STATE(1392)] = 38982, + [SMALL_STATE(1393)] = 39031, + [SMALL_STATE(1394)] = 39080, + [SMALL_STATE(1395)] = 39129, + [SMALL_STATE(1396)] = 39178, + [SMALL_STATE(1397)] = 39227, + [SMALL_STATE(1398)] = 39276, + [SMALL_STATE(1399)] = 39325, + [SMALL_STATE(1400)] = 39374, + [SMALL_STATE(1401)] = 39423, + [SMALL_STATE(1402)] = 39472, + [SMALL_STATE(1403)] = 39521, + [SMALL_STATE(1404)] = 39570, + [SMALL_STATE(1405)] = 39619, + [SMALL_STATE(1406)] = 39668, + [SMALL_STATE(1407)] = 39717, + [SMALL_STATE(1408)] = 39766, + [SMALL_STATE(1409)] = 39815, + [SMALL_STATE(1410)] = 39864, + [SMALL_STATE(1411)] = 39913, + [SMALL_STATE(1412)] = 39962, + [SMALL_STATE(1413)] = 40011, + [SMALL_STATE(1414)] = 40060, + [SMALL_STATE(1415)] = 40109, + [SMALL_STATE(1416)] = 40158, + [SMALL_STATE(1417)] = 40207, + [SMALL_STATE(1418)] = 40256, + [SMALL_STATE(1419)] = 40305, + [SMALL_STATE(1420)] = 40354, + [SMALL_STATE(1421)] = 40403, + [SMALL_STATE(1422)] = 40452, + [SMALL_STATE(1423)] = 40501, + [SMALL_STATE(1424)] = 40550, + [SMALL_STATE(1425)] = 40599, + [SMALL_STATE(1426)] = 40648, + [SMALL_STATE(1427)] = 40697, + [SMALL_STATE(1428)] = 40746, + [SMALL_STATE(1429)] = 40795, + [SMALL_STATE(1430)] = 40844, + [SMALL_STATE(1431)] = 40893, + [SMALL_STATE(1432)] = 40942, + [SMALL_STATE(1433)] = 40991, + [SMALL_STATE(1434)] = 41040, + [SMALL_STATE(1435)] = 41089, + [SMALL_STATE(1436)] = 41138, + [SMALL_STATE(1437)] = 41187, + [SMALL_STATE(1438)] = 41236, + [SMALL_STATE(1439)] = 41285, + [SMALL_STATE(1440)] = 41334, + [SMALL_STATE(1441)] = 41383, + [SMALL_STATE(1442)] = 41432, + [SMALL_STATE(1443)] = 41481, + [SMALL_STATE(1444)] = 41530, + [SMALL_STATE(1445)] = 41579, + [SMALL_STATE(1446)] = 41628, + [SMALL_STATE(1447)] = 41677, + [SMALL_STATE(1448)] = 41726, + [SMALL_STATE(1449)] = 41776, + [SMALL_STATE(1450)] = 41862, + [SMALL_STATE(1451)] = 41946, + [SMALL_STATE(1452)] = 42032, + [SMALL_STATE(1453)] = 42116, + [SMALL_STATE(1454)] = 42200, + [SMALL_STATE(1455)] = 42284, + [SMALL_STATE(1456)] = 42370, + [SMALL_STATE(1457)] = 42456, + [SMALL_STATE(1458)] = 42542, + [SMALL_STATE(1459)] = 42628, + [SMALL_STATE(1460)] = 42712, + [SMALL_STATE(1461)] = 42796, + [SMALL_STATE(1462)] = 42877, + [SMALL_STATE(1463)] = 42958, + [SMALL_STATE(1464)] = 43039, + [SMALL_STATE(1465)] = 43120, + [SMALL_STATE(1466)] = 43201, + [SMALL_STATE(1467)] = 43266, + [SMALL_STATE(1468)] = 43347, + [SMALL_STATE(1469)] = 43426, + [SMALL_STATE(1470)] = 43507, + [SMALL_STATE(1471)] = 43582, + [SMALL_STATE(1472)] = 43643, + [SMALL_STATE(1473)] = 43724, + [SMALL_STATE(1474)] = 43799, + [SMALL_STATE(1475)] = 43856, + [SMALL_STATE(1476)] = 43937, + [SMALL_STATE(1477)] = 44006, + [SMALL_STATE(1478)] = 44063, + [SMALL_STATE(1479)] = 44144, + [SMALL_STATE(1480)] = 44201, + [SMALL_STATE(1481)] = 44270, + [SMALL_STATE(1482)] = 44335, + [SMALL_STATE(1483)] = 44396, + [SMALL_STATE(1484)] = 44477, + [SMALL_STATE(1485)] = 44556, + [SMALL_STATE(1486)] = 44613, + [SMALL_STATE(1487)] = 44697, + [SMALL_STATE(1488)] = 44781, + [SMALL_STATE(1489)] = 44865, + [SMALL_STATE(1490)] = 44921, + [SMALL_STATE(1491)] = 44977, + [SMALL_STATE(1492)] = 45045, + [SMALL_STATE(1493)] = 45105, + [SMALL_STATE(1494)] = 45169, + [SMALL_STATE(1495)] = 45237, + [SMALL_STATE(1496)] = 45311, + [SMALL_STATE(1497)] = 45389, + [SMALL_STATE(1498)] = 45473, + [SMALL_STATE(1499)] = 45547, + [SMALL_STATE(1500)] = 45631, + [SMALL_STATE(1501)] = 45715, + [SMALL_STATE(1502)] = 45775, + [SMALL_STATE(1503)] = 45859, + [SMALL_STATE(1504)] = 45943, + [SMALL_STATE(1505)] = 46023, + [SMALL_STATE(1506)] = 46107, + [SMALL_STATE(1507)] = 46185, + [SMALL_STATE(1508)] = 46269, + [SMALL_STATE(1509)] = 46349, + [SMALL_STATE(1510)] = 46433, + [SMALL_STATE(1511)] = 46513, + [SMALL_STATE(1512)] = 46569, + [SMALL_STATE(1513)] = 46649, + [SMALL_STATE(1514)] = 46729, + [SMALL_STATE(1515)] = 46793, + [SMALL_STATE(1516)] = 46873, + [SMALL_STATE(1517)] = 46953, + [SMALL_STATE(1518)] = 47037, + [SMALL_STATE(1519)] = 47119, + [SMALL_STATE(1520)] = 47203, + [SMALL_STATE(1521)] = 47259, + [SMALL_STATE(1522)] = 47343, + [SMALL_STATE(1523)] = 47427, + [SMALL_STATE(1524)] = 47507, + [SMALL_STATE(1525)] = 47587, + [SMALL_STATE(1526)] = 47671, + [SMALL_STATE(1527)] = 47755, + [SMALL_STATE(1528)] = 47839, + [SMALL_STATE(1529)] = 47919, + [SMALL_STATE(1530)] = 48003, + [SMALL_STATE(1531)] = 48087, + [SMALL_STATE(1532)] = 48167, + [SMALL_STATE(1533)] = 48248, + [SMALL_STATE(1534)] = 48329, + [SMALL_STATE(1535)] = 48410, + [SMALL_STATE(1536)] = 48489, + [SMALL_STATE(1537)] = 48570, + [SMALL_STATE(1538)] = 48651, + [SMALL_STATE(1539)] = 48732, + [SMALL_STATE(1540)] = 48813, + [SMALL_STATE(1541)] = 48894, + [SMALL_STATE(1542)] = 48975, + [SMALL_STATE(1543)] = 49056, + [SMALL_STATE(1544)] = 49135, + [SMALL_STATE(1545)] = 49216, + [SMALL_STATE(1546)] = 49297, + [SMALL_STATE(1547)] = 49378, + [SMALL_STATE(1548)] = 49459, + [SMALL_STATE(1549)] = 49538, + [SMALL_STATE(1550)] = 49616, + [SMALL_STATE(1551)] = 49694, + [SMALL_STATE(1552)] = 49772, + [SMALL_STATE(1553)] = 49850, + [SMALL_STATE(1554)] = 49928, + [SMALL_STATE(1555)] = 50006, + [SMALL_STATE(1556)] = 50084, + [SMALL_STATE(1557)] = 50162, + [SMALL_STATE(1558)] = 50240, + [SMALL_STATE(1559)] = 50286, + [SMALL_STATE(1560)] = 50364, + [SMALL_STATE(1561)] = 50442, + [SMALL_STATE(1562)] = 50488, + [SMALL_STATE(1563)] = 50566, + [SMALL_STATE(1564)] = 50644, + [SMALL_STATE(1565)] = 50722, + [SMALL_STATE(1566)] = 50800, + [SMALL_STATE(1567)] = 50878, + [SMALL_STATE(1568)] = 50956, + [SMALL_STATE(1569)] = 51034, + [SMALL_STATE(1570)] = 51082, + [SMALL_STATE(1571)] = 51160, + [SMALL_STATE(1572)] = 51238, + [SMALL_STATE(1573)] = 51316, + [SMALL_STATE(1574)] = 51394, + [SMALL_STATE(1575)] = 51472, + [SMALL_STATE(1576)] = 51550, + [SMALL_STATE(1577)] = 51628, + [SMALL_STATE(1578)] = 51706, + [SMALL_STATE(1579)] = 51784, + [SMALL_STATE(1580)] = 51862, + [SMALL_STATE(1581)] = 51940, + [SMALL_STATE(1582)] = 52018, + [SMALL_STATE(1583)] = 52096, + [SMALL_STATE(1584)] = 52174, + [SMALL_STATE(1585)] = 52252, + [SMALL_STATE(1586)] = 52330, + [SMALL_STATE(1587)] = 52408, + [SMALL_STATE(1588)] = 52486, + [SMALL_STATE(1589)] = 52564, + [SMALL_STATE(1590)] = 52642, + [SMALL_STATE(1591)] = 52720, + [SMALL_STATE(1592)] = 52798, + [SMALL_STATE(1593)] = 52876, + [SMALL_STATE(1594)] = 52954, + [SMALL_STATE(1595)] = 53032, + [SMALL_STATE(1596)] = 53110, + [SMALL_STATE(1597)] = 53188, + [SMALL_STATE(1598)] = 53266, + [SMALL_STATE(1599)] = 53314, + [SMALL_STATE(1600)] = 53392, + [SMALL_STATE(1601)] = 53470, + [SMALL_STATE(1602)] = 53548, + [SMALL_STATE(1603)] = 53626, + [SMALL_STATE(1604)] = 53704, + [SMALL_STATE(1605)] = 53782, + [SMALL_STATE(1606)] = 53860, + [SMALL_STATE(1607)] = 53905, + [SMALL_STATE(1608)] = 53950, + [SMALL_STATE(1609)] = 53992, + [SMALL_STATE(1610)] = 54034, + [SMALL_STATE(1611)] = 54076, + [SMALL_STATE(1612)] = 54118, + [SMALL_STATE(1613)] = 54160, + [SMALL_STATE(1614)] = 54202, + [SMALL_STATE(1615)] = 54244, + [SMALL_STATE(1616)] = 54286, + [SMALL_STATE(1617)] = 54328, + [SMALL_STATE(1618)] = 54370, + [SMALL_STATE(1619)] = 54412, + [SMALL_STATE(1620)] = 54468, + [SMALL_STATE(1621)] = 54524, + [SMALL_STATE(1622)] = 54579, + [SMALL_STATE(1623)] = 54632, + [SMALL_STATE(1624)] = 54687, + [SMALL_STATE(1625)] = 54742, + [SMALL_STATE(1626)] = 54797, + [SMALL_STATE(1627)] = 54850, + [SMALL_STATE(1628)] = 54902, + [SMALL_STATE(1629)] = 54954, + [SMALL_STATE(1630)] = 55002, + [SMALL_STATE(1631)] = 55050, + [SMALL_STATE(1632)] = 55098, + [SMALL_STATE(1633)] = 55146, + [SMALL_STATE(1634)] = 55194, + [SMALL_STATE(1635)] = 55246, + [SMALL_STATE(1636)] = 55288, + [SMALL_STATE(1637)] = 55336, + [SMALL_STATE(1638)] = 55384, + [SMALL_STATE(1639)] = 55432, + [SMALL_STATE(1640)] = 55484, + [SMALL_STATE(1641)] = 55526, + [SMALL_STATE(1642)] = 55574, + [SMALL_STATE(1643)] = 55622, + [SMALL_STATE(1644)] = 55670, + [SMALL_STATE(1645)] = 55718, + [SMALL_STATE(1646)] = 55766, + [SMALL_STATE(1647)] = 55807, + [SMALL_STATE(1648)] = 55854, + [SMALL_STATE(1649)] = 55895, + [SMALL_STATE(1650)] = 55942, + [SMALL_STATE(1651)] = 55989, + [SMALL_STATE(1652)] = 56036, + [SMALL_STATE(1653)] = 56083, + [SMALL_STATE(1654)] = 56130, + [SMALL_STATE(1655)] = 56177, + [SMALL_STATE(1656)] = 56224, + [SMALL_STATE(1657)] = 56271, + [SMALL_STATE(1658)] = 56318, + [SMALL_STATE(1659)] = 56365, + [SMALL_STATE(1660)] = 56412, + [SMALL_STATE(1661)] = 56459, + [SMALL_STATE(1662)] = 56505, + [SMALL_STATE(1663)] = 56545, + [SMALL_STATE(1664)] = 56581, + [SMALL_STATE(1665)] = 56627, + [SMALL_STATE(1666)] = 56673, + [SMALL_STATE(1667)] = 56709, + [SMALL_STATE(1668)] = 56749, + [SMALL_STATE(1669)] = 56795, + [SMALL_STATE(1670)] = 56841, + [SMALL_STATE(1671)] = 56881, + [SMALL_STATE(1672)] = 56921, + [SMALL_STATE(1673)] = 56961, + [SMALL_STATE(1674)] = 57007, + [SMALL_STATE(1675)] = 57053, + [SMALL_STATE(1676)] = 57099, + [SMALL_STATE(1677)] = 57145, + [SMALL_STATE(1678)] = 57181, + [SMALL_STATE(1679)] = 57227, + [SMALL_STATE(1680)] = 57273, + [SMALL_STATE(1681)] = 57311, + [SMALL_STATE(1682)] = 57347, + [SMALL_STATE(1683)] = 57383, + [SMALL_STATE(1684)] = 57421, + [SMALL_STATE(1685)] = 57467, + [SMALL_STATE(1686)] = 57513, + [SMALL_STATE(1687)] = 57551, + [SMALL_STATE(1688)] = 57589, + [SMALL_STATE(1689)] = 57624, + [SMALL_STATE(1690)] = 57663, + [SMALL_STATE(1691)] = 57698, + [SMALL_STATE(1692)] = 57733, + [SMALL_STATE(1693)] = 57768, + [SMALL_STATE(1694)] = 57803, + [SMALL_STATE(1695)] = 57838, + [SMALL_STATE(1696)] = 57873, + [SMALL_STATE(1697)] = 57908, + [SMALL_STATE(1698)] = 57943, + [SMALL_STATE(1699)] = 57978, + [SMALL_STATE(1700)] = 58013, + [SMALL_STATE(1701)] = 58048, + [SMALL_STATE(1702)] = 58083, + [SMALL_STATE(1703)] = 58118, + [SMALL_STATE(1704)] = 58153, + [SMALL_STATE(1705)] = 58188, + [SMALL_STATE(1706)] = 58223, + [SMALL_STATE(1707)] = 58258, + [SMALL_STATE(1708)] = 58293, + [SMALL_STATE(1709)] = 58328, + [SMALL_STATE(1710)] = 58363, + [SMALL_STATE(1711)] = 58398, + [SMALL_STATE(1712)] = 58433, + [SMALL_STATE(1713)] = 58468, + [SMALL_STATE(1714)] = 58503, + [SMALL_STATE(1715)] = 58538, + [SMALL_STATE(1716)] = 58573, + [SMALL_STATE(1717)] = 58608, + [SMALL_STATE(1718)] = 58643, + [SMALL_STATE(1719)] = 58678, + [SMALL_STATE(1720)] = 58713, + [SMALL_STATE(1721)] = 58748, + [SMALL_STATE(1722)] = 58783, + [SMALL_STATE(1723)] = 58818, + [SMALL_STATE(1724)] = 58853, + [SMALL_STATE(1725)] = 58888, + [SMALL_STATE(1726)] = 58923, + [SMALL_STATE(1727)] = 58958, + [SMALL_STATE(1728)] = 58993, + [SMALL_STATE(1729)] = 59028, + [SMALL_STATE(1730)] = 59063, + [SMALL_STATE(1731)] = 59098, + [SMALL_STATE(1732)] = 59133, + [SMALL_STATE(1733)] = 59168, + [SMALL_STATE(1734)] = 59203, + [SMALL_STATE(1735)] = 59238, + [SMALL_STATE(1736)] = 59273, + [SMALL_STATE(1737)] = 59308, + [SMALL_STATE(1738)] = 59343, + [SMALL_STATE(1739)] = 59380, + [SMALL_STATE(1740)] = 59415, + [SMALL_STATE(1741)] = 59450, + [SMALL_STATE(1742)] = 59485, + [SMALL_STATE(1743)] = 59520, + [SMALL_STATE(1744)] = 59555, + [SMALL_STATE(1745)] = 59590, + [SMALL_STATE(1746)] = 59625, + [SMALL_STATE(1747)] = 59660, + [SMALL_STATE(1748)] = 59695, + [SMALL_STATE(1749)] = 59730, + [SMALL_STATE(1750)] = 59765, + [SMALL_STATE(1751)] = 59800, + [SMALL_STATE(1752)] = 59835, + [SMALL_STATE(1753)] = 59870, + [SMALL_STATE(1754)] = 59905, + [SMALL_STATE(1755)] = 59940, + [SMALL_STATE(1756)] = 59975, + [SMALL_STATE(1757)] = 60010, + [SMALL_STATE(1758)] = 60045, + [SMALL_STATE(1759)] = 60080, + [SMALL_STATE(1760)] = 60115, + [SMALL_STATE(1761)] = 60154, + [SMALL_STATE(1762)] = 60189, + [SMALL_STATE(1763)] = 60224, + [SMALL_STATE(1764)] = 60259, + [SMALL_STATE(1765)] = 60294, + [SMALL_STATE(1766)] = 60329, + [SMALL_STATE(1767)] = 60368, + [SMALL_STATE(1768)] = 60403, + [SMALL_STATE(1769)] = 60437, + [SMALL_STATE(1770)] = 60471, + [SMALL_STATE(1771)] = 60505, + [SMALL_STATE(1772)] = 60575, + [SMALL_STATE(1773)] = 60609, + [SMALL_STATE(1774)] = 60643, + [SMALL_STATE(1775)] = 60677, + [SMALL_STATE(1776)] = 60711, + [SMALL_STATE(1777)] = 60745, + [SMALL_STATE(1778)] = 60779, + [SMALL_STATE(1779)] = 60813, + [SMALL_STATE(1780)] = 60847, + [SMALL_STATE(1781)] = 60881, + [SMALL_STATE(1782)] = 60915, + [SMALL_STATE(1783)] = 60949, + [SMALL_STATE(1784)] = 61019, + [SMALL_STATE(1785)] = 61053, + [SMALL_STATE(1786)] = 61087, + [SMALL_STATE(1787)] = 61121, + [SMALL_STATE(1788)] = 61155, + [SMALL_STATE(1789)] = 61189, + [SMALL_STATE(1790)] = 61223, + [SMALL_STATE(1791)] = 61257, + [SMALL_STATE(1792)] = 61291, + [SMALL_STATE(1793)] = 61325, + [SMALL_STATE(1794)] = 61359, + [SMALL_STATE(1795)] = 61429, + [SMALL_STATE(1796)] = 61463, + [SMALL_STATE(1797)] = 61497, + [SMALL_STATE(1798)] = 61531, + [SMALL_STATE(1799)] = 61565, + [SMALL_STATE(1800)] = 61599, + [SMALL_STATE(1801)] = 61633, + [SMALL_STATE(1802)] = 61667, + [SMALL_STATE(1803)] = 61701, + [SMALL_STATE(1804)] = 61735, + [SMALL_STATE(1805)] = 61769, + [SMALL_STATE(1806)] = 61839, + [SMALL_STATE(1807)] = 61873, + [SMALL_STATE(1808)] = 61907, + [SMALL_STATE(1809)] = 61941, + [SMALL_STATE(1810)] = 61975, + [SMALL_STATE(1811)] = 62009, + [SMALL_STATE(1812)] = 62043, + [SMALL_STATE(1813)] = 62077, + [SMALL_STATE(1814)] = 62111, + [SMALL_STATE(1815)] = 62145, + [SMALL_STATE(1816)] = 62179, + [SMALL_STATE(1817)] = 62213, + [SMALL_STATE(1818)] = 62247, + [SMALL_STATE(1819)] = 62281, + [SMALL_STATE(1820)] = 62315, + [SMALL_STATE(1821)] = 62349, + [SMALL_STATE(1822)] = 62383, + [SMALL_STATE(1823)] = 62417, + [SMALL_STATE(1824)] = 62451, + [SMALL_STATE(1825)] = 62485, + [SMALL_STATE(1826)] = 62519, + [SMALL_STATE(1827)] = 62553, + [SMALL_STATE(1828)] = 62587, + [SMALL_STATE(1829)] = 62621, + [SMALL_STATE(1830)] = 62655, + [SMALL_STATE(1831)] = 62723, + [SMALL_STATE(1832)] = 62757, + [SMALL_STATE(1833)] = 62791, + [SMALL_STATE(1834)] = 62825, + [SMALL_STATE(1835)] = 62859, + [SMALL_STATE(1836)] = 62893, + [SMALL_STATE(1837)] = 62927, + [SMALL_STATE(1838)] = 62961, + [SMALL_STATE(1839)] = 62995, + [SMALL_STATE(1840)] = 63029, + [SMALL_STATE(1841)] = 63099, + [SMALL_STATE(1842)] = 63133, + [SMALL_STATE(1843)] = 63167, + [SMALL_STATE(1844)] = 63201, + [SMALL_STATE(1845)] = 63271, + [SMALL_STATE(1846)] = 63305, + [SMALL_STATE(1847)] = 63372, + [SMALL_STATE(1848)] = 63439, + [SMALL_STATE(1849)] = 63506, + [SMALL_STATE(1850)] = 63573, + [SMALL_STATE(1851)] = 63640, + [SMALL_STATE(1852)] = 63707, + [SMALL_STATE(1853)] = 63774, + [SMALL_STATE(1854)] = 63841, + [SMALL_STATE(1855)] = 63908, + [SMALL_STATE(1856)] = 63975, + [SMALL_STATE(1857)] = 64042, + [SMALL_STATE(1858)] = 64109, + [SMALL_STATE(1859)] = 64176, + [SMALL_STATE(1860)] = 64243, + [SMALL_STATE(1861)] = 64310, + [SMALL_STATE(1862)] = 64377, + [SMALL_STATE(1863)] = 64444, + [SMALL_STATE(1864)] = 64511, + [SMALL_STATE(1865)] = 64578, + [SMALL_STATE(1866)] = 64645, + [SMALL_STATE(1867)] = 64712, + [SMALL_STATE(1868)] = 64743, + [SMALL_STATE(1869)] = 64778, + [SMALL_STATE(1870)] = 64813, + [SMALL_STATE(1871)] = 64848, + [SMALL_STATE(1872)] = 64882, + [SMALL_STATE(1873)] = 64910, + [SMALL_STATE(1874)] = 64938, + [SMALL_STATE(1875)] = 64970, + [SMALL_STATE(1876)] = 65002, + [SMALL_STATE(1877)] = 65030, + [SMALL_STATE(1878)] = 65062, + [SMALL_STATE(1879)] = 65090, + [SMALL_STATE(1880)] = 65122, + [SMALL_STATE(1881)] = 65151, + [SMALL_STATE(1882)] = 65180, + [SMALL_STATE(1883)] = 65207, + [SMALL_STATE(1884)] = 65236, + [SMALL_STATE(1885)] = 65264, + [SMALL_STATE(1886)] = 65318, + [SMALL_STATE(1887)] = 65346, + [SMALL_STATE(1888)] = 65374, + [SMALL_STATE(1889)] = 65399, + [SMALL_STATE(1890)] = 65424, + [SMALL_STATE(1891)] = 65449, + [SMALL_STATE(1892)] = 65474, + [SMALL_STATE(1893)] = 65499, + [SMALL_STATE(1894)] = 65524, + [SMALL_STATE(1895)] = 65549, + [SMALL_STATE(1896)] = 65574, + [SMALL_STATE(1897)] = 65599, + [SMALL_STATE(1898)] = 65624, + [SMALL_STATE(1899)] = 65649, + [SMALL_STATE(1900)] = 65674, + [SMALL_STATE(1901)] = 65699, + [SMALL_STATE(1902)] = 65724, + [SMALL_STATE(1903)] = 65749, + [SMALL_STATE(1904)] = 65774, + [SMALL_STATE(1905)] = 65799, + [SMALL_STATE(1906)] = 65824, + [SMALL_STATE(1907)] = 65849, + [SMALL_STATE(1908)] = 65874, + [SMALL_STATE(1909)] = 65899, + [SMALL_STATE(1910)] = 65924, + [SMALL_STATE(1911)] = 65949, + [SMALL_STATE(1912)] = 65995, + [SMALL_STATE(1913)] = 66034, + [SMALL_STATE(1914)] = 66071, + [SMALL_STATE(1915)] = 66106, + [SMALL_STATE(1916)] = 66143, + [SMALL_STATE(1917)] = 66180, + [SMALL_STATE(1918)] = 66219, + [SMALL_STATE(1919)] = 66256, + [SMALL_STATE(1920)] = 66293, + [SMALL_STATE(1921)] = 66330, + [SMALL_STATE(1922)] = 66365, + [SMALL_STATE(1923)] = 66400, + [SMALL_STATE(1924)] = 66437, + [SMALL_STATE(1925)] = 66472, + [SMALL_STATE(1926)] = 66509, + [SMALL_STATE(1927)] = 66544, + [SMALL_STATE(1928)] = 66580, + [SMALL_STATE(1929)] = 66616, + [SMALL_STATE(1930)] = 66646, + [SMALL_STATE(1931)] = 66676, + [SMALL_STATE(1932)] = 66706, + [SMALL_STATE(1933)] = 66736, + [SMALL_STATE(1934)] = 66766, + [SMALL_STATE(1935)] = 66794, + [SMALL_STATE(1936)] = 66824, + [SMALL_STATE(1937)] = 66854, + [SMALL_STATE(1938)] = 66884, + [SMALL_STATE(1939)] = 66914, + [SMALL_STATE(1940)] = 66944, + [SMALL_STATE(1941)] = 66968, + [SMALL_STATE(1942)] = 66992, + [SMALL_STATE(1943)] = 67016, + [SMALL_STATE(1944)] = 67034, + [SMALL_STATE(1945)] = 67058, + [SMALL_STATE(1946)] = 67082, + [SMALL_STATE(1947)] = 67106, + [SMALL_STATE(1948)] = 67130, + [SMALL_STATE(1949)] = 67154, + [SMALL_STATE(1950)] = 67179, + [SMALL_STATE(1951)] = 67204, + [SMALL_STATE(1952)] = 67225, + [SMALL_STATE(1953)] = 67250, + [SMALL_STATE(1954)] = 67271, + [SMALL_STATE(1955)] = 67296, + [SMALL_STATE(1956)] = 67317, + [SMALL_STATE(1957)] = 67335, + [SMALL_STATE(1958)] = 67353, + [SMALL_STATE(1959)] = 67373, + [SMALL_STATE(1960)] = 67391, + [SMALL_STATE(1961)] = 67409, + [SMALL_STATE(1962)] = 67429, + [SMALL_STATE(1963)] = 67447, + [SMALL_STATE(1964)] = 67469, + [SMALL_STATE(1965)] = 67489, + [SMALL_STATE(1966)] = 67509, + [SMALL_STATE(1967)] = 67527, + [SMALL_STATE(1968)] = 67545, + [SMALL_STATE(1969)] = 67563, + [SMALL_STATE(1970)] = 67581, + [SMALL_STATE(1971)] = 67601, + [SMALL_STATE(1972)] = 67621, + [SMALL_STATE(1973)] = 67641, + [SMALL_STATE(1974)] = 67659, + [SMALL_STATE(1975)] = 67677, + [SMALL_STATE(1976)] = 67695, + [SMALL_STATE(1977)] = 67715, + [SMALL_STATE(1978)] = 67733, + [SMALL_STATE(1979)] = 67751, + [SMALL_STATE(1980)] = 67769, + [SMALL_STATE(1981)] = 67789, + [SMALL_STATE(1982)] = 67809, + [SMALL_STATE(1983)] = 67827, + [SMALL_STATE(1984)] = 67847, + [SMALL_STATE(1985)] = 67867, + [SMALL_STATE(1986)] = 67885, + [SMALL_STATE(1987)] = 67903, + [SMALL_STATE(1988)] = 67921, + [SMALL_STATE(1989)] = 67939, + [SMALL_STATE(1990)] = 67957, + [SMALL_STATE(1991)] = 67975, + [SMALL_STATE(1992)] = 67995, + [SMALL_STATE(1993)] = 68013, + [SMALL_STATE(1994)] = 68033, + [SMALL_STATE(1995)] = 68051, + [SMALL_STATE(1996)] = 68069, + [SMALL_STATE(1997)] = 68089, + [SMALL_STATE(1998)] = 68111, + [SMALL_STATE(1999)] = 68129, + [SMALL_STATE(2000)] = 68147, + [SMALL_STATE(2001)] = 68167, + [SMALL_STATE(2002)] = 68185, + [SMALL_STATE(2003)] = 68203, + [SMALL_STATE(2004)] = 68221, + [SMALL_STATE(2005)] = 68240, + [SMALL_STATE(2006)] = 68259, + [SMALL_STATE(2007)] = 68278, + [SMALL_STATE(2008)] = 68297, + [SMALL_STATE(2009)] = 68316, + [SMALL_STATE(2010)] = 68335, + [SMALL_STATE(2011)] = 68354, + [SMALL_STATE(2012)] = 68373, + [SMALL_STATE(2013)] = 68392, + [SMALL_STATE(2014)] = 68411, + [SMALL_STATE(2015)] = 68430, + [SMALL_STATE(2016)] = 68445, + [SMALL_STATE(2017)] = 68464, + [SMALL_STATE(2018)] = 68483, + [SMALL_STATE(2019)] = 68502, + [SMALL_STATE(2020)] = 68521, + [SMALL_STATE(2021)] = 68540, + [SMALL_STATE(2022)] = 68559, + [SMALL_STATE(2023)] = 68578, + [SMALL_STATE(2024)] = 68597, + [SMALL_STATE(2025)] = 68616, + [SMALL_STATE(2026)] = 68635, + [SMALL_STATE(2027)] = 68654, + [SMALL_STATE(2028)] = 68673, + [SMALL_STATE(2029)] = 68692, + [SMALL_STATE(2030)] = 68711, + [SMALL_STATE(2031)] = 68730, + [SMALL_STATE(2032)] = 68749, + [SMALL_STATE(2033)] = 68764, + [SMALL_STATE(2034)] = 68783, + [SMALL_STATE(2035)] = 68802, + [SMALL_STATE(2036)] = 68821, + [SMALL_STATE(2037)] = 68840, + [SMALL_STATE(2038)] = 68859, + [SMALL_STATE(2039)] = 68878, + [SMALL_STATE(2040)] = 68897, + [SMALL_STATE(2041)] = 68916, + [SMALL_STATE(2042)] = 68935, + [SMALL_STATE(2043)] = 68954, + [SMALL_STATE(2044)] = 68973, + [SMALL_STATE(2045)] = 68992, + [SMALL_STATE(2046)] = 69011, + [SMALL_STATE(2047)] = 69030, + [SMALL_STATE(2048)] = 69049, + [SMALL_STATE(2049)] = 69068, + [SMALL_STATE(2050)] = 69087, + [SMALL_STATE(2051)] = 69106, + [SMALL_STATE(2052)] = 69125, + [SMALL_STATE(2053)] = 69144, + [SMALL_STATE(2054)] = 69163, + [SMALL_STATE(2055)] = 69182, + [SMALL_STATE(2056)] = 69201, + [SMALL_STATE(2057)] = 69220, + [SMALL_STATE(2058)] = 69239, + [SMALL_STATE(2059)] = 69258, + [SMALL_STATE(2060)] = 69277, + [SMALL_STATE(2061)] = 69296, + [SMALL_STATE(2062)] = 69315, + [SMALL_STATE(2063)] = 69334, + [SMALL_STATE(2064)] = 69353, + [SMALL_STATE(2065)] = 69369, + [SMALL_STATE(2066)] = 69385, + [SMALL_STATE(2067)] = 69401, + [SMALL_STATE(2068)] = 69417, + [SMALL_STATE(2069)] = 69431, + [SMALL_STATE(2070)] = 69447, + [SMALL_STATE(2071)] = 69463, + [SMALL_STATE(2072)] = 69479, + [SMALL_STATE(2073)] = 69495, + [SMALL_STATE(2074)] = 69511, + [SMALL_STATE(2075)] = 69525, + [SMALL_STATE(2076)] = 69539, + [SMALL_STATE(2077)] = 69555, + [SMALL_STATE(2078)] = 69565, + [SMALL_STATE(2079)] = 69581, + [SMALL_STATE(2080)] = 69597, + [SMALL_STATE(2081)] = 69610, + [SMALL_STATE(2082)] = 69623, + [SMALL_STATE(2083)] = 69636, + [SMALL_STATE(2084)] = 69649, + [SMALL_STATE(2085)] = 69662, + [SMALL_STATE(2086)] = 69675, + [SMALL_STATE(2087)] = 69688, + [SMALL_STATE(2088)] = 69701, + [SMALL_STATE(2089)] = 69714, + [SMALL_STATE(2090)] = 69727, + [SMALL_STATE(2091)] = 69740, + [SMALL_STATE(2092)] = 69753, + [SMALL_STATE(2093)] = 69766, + [SMALL_STATE(2094)] = 69779, + [SMALL_STATE(2095)] = 69792, + [SMALL_STATE(2096)] = 69805, + [SMALL_STATE(2097)] = 69818, + [SMALL_STATE(2098)] = 69829, + [SMALL_STATE(2099)] = 69842, + [SMALL_STATE(2100)] = 69851, + [SMALL_STATE(2101)] = 69864, + [SMALL_STATE(2102)] = 69877, + [SMALL_STATE(2103)] = 69890, + [SMALL_STATE(2104)] = 69903, + [SMALL_STATE(2105)] = 69916, + [SMALL_STATE(2106)] = 69929, + [SMALL_STATE(2107)] = 69942, + [SMALL_STATE(2108)] = 69955, + [SMALL_STATE(2109)] = 69968, + [SMALL_STATE(2110)] = 69981, + [SMALL_STATE(2111)] = 69994, + [SMALL_STATE(2112)] = 70007, + [SMALL_STATE(2113)] = 70020, + [SMALL_STATE(2114)] = 70033, + [SMALL_STATE(2115)] = 70046, + [SMALL_STATE(2116)] = 70059, + [SMALL_STATE(2117)] = 70072, + [SMALL_STATE(2118)] = 70085, + [SMALL_STATE(2119)] = 70098, + [SMALL_STATE(2120)] = 70111, + [SMALL_STATE(2121)] = 70124, + [SMALL_STATE(2122)] = 70137, + [SMALL_STATE(2123)] = 70150, + [SMALL_STATE(2124)] = 70163, + [SMALL_STATE(2125)] = 70176, + [SMALL_STATE(2126)] = 70189, + [SMALL_STATE(2127)] = 70202, + [SMALL_STATE(2128)] = 70211, + [SMALL_STATE(2129)] = 70224, + [SMALL_STATE(2130)] = 70237, + [SMALL_STATE(2131)] = 70250, + [SMALL_STATE(2132)] = 70263, + [SMALL_STATE(2133)] = 70276, + [SMALL_STATE(2134)] = 70289, + [SMALL_STATE(2135)] = 70302, + [SMALL_STATE(2136)] = 70315, + [SMALL_STATE(2137)] = 70328, + [SMALL_STATE(2138)] = 70341, + [SMALL_STATE(2139)] = 70354, + [SMALL_STATE(2140)] = 70367, + [SMALL_STATE(2141)] = 70376, + [SMALL_STATE(2142)] = 70385, + [SMALL_STATE(2143)] = 70398, + [SMALL_STATE(2144)] = 70411, + [SMALL_STATE(2145)] = 70424, + [SMALL_STATE(2146)] = 70437, + [SMALL_STATE(2147)] = 70450, + [SMALL_STATE(2148)] = 70463, + [SMALL_STATE(2149)] = 70476, + [SMALL_STATE(2150)] = 70485, + [SMALL_STATE(2151)] = 70498, + [SMALL_STATE(2152)] = 70511, + [SMALL_STATE(2153)] = 70524, + [SMALL_STATE(2154)] = 70537, + [SMALL_STATE(2155)] = 70550, + [SMALL_STATE(2156)] = 70563, + [SMALL_STATE(2157)] = 70576, + [SMALL_STATE(2158)] = 70589, + [SMALL_STATE(2159)] = 70602, + [SMALL_STATE(2160)] = 70615, + [SMALL_STATE(2161)] = 70628, + [SMALL_STATE(2162)] = 70641, + [SMALL_STATE(2163)] = 70654, + [SMALL_STATE(2164)] = 70667, + [SMALL_STATE(2165)] = 70680, + [SMALL_STATE(2166)] = 70693, + [SMALL_STATE(2167)] = 70706, + [SMALL_STATE(2168)] = 70719, + [SMALL_STATE(2169)] = 70732, + [SMALL_STATE(2170)] = 70745, + [SMALL_STATE(2171)] = 70758, + [SMALL_STATE(2172)] = 70771, + [SMALL_STATE(2173)] = 70784, + [SMALL_STATE(2174)] = 70797, + [SMALL_STATE(2175)] = 70810, + [SMALL_STATE(2176)] = 70823, + [SMALL_STATE(2177)] = 70836, + [SMALL_STATE(2178)] = 70849, + [SMALL_STATE(2179)] = 70862, + [SMALL_STATE(2180)] = 70875, + [SMALL_STATE(2181)] = 70888, + [SMALL_STATE(2182)] = 70901, + [SMALL_STATE(2183)] = 70914, + [SMALL_STATE(2184)] = 70927, + [SMALL_STATE(2185)] = 70940, + [SMALL_STATE(2186)] = 70953, + [SMALL_STATE(2187)] = 70966, + [SMALL_STATE(2188)] = 70979, + [SMALL_STATE(2189)] = 70992, + [SMALL_STATE(2190)] = 71005, + [SMALL_STATE(2191)] = 71018, + [SMALL_STATE(2192)] = 71031, + [SMALL_STATE(2193)] = 71044, + [SMALL_STATE(2194)] = 71057, + [SMALL_STATE(2195)] = 71070, + [SMALL_STATE(2196)] = 71083, + [SMALL_STATE(2197)] = 71096, + [SMALL_STATE(2198)] = 71109, + [SMALL_STATE(2199)] = 71122, + [SMALL_STATE(2200)] = 71135, + [SMALL_STATE(2201)] = 71148, + [SMALL_STATE(2202)] = 71161, + [SMALL_STATE(2203)] = 71174, + [SMALL_STATE(2204)] = 71187, + [SMALL_STATE(2205)] = 71200, + [SMALL_STATE(2206)] = 71213, + [SMALL_STATE(2207)] = 71226, + [SMALL_STATE(2208)] = 71239, + [SMALL_STATE(2209)] = 71252, + [SMALL_STATE(2210)] = 71265, + [SMALL_STATE(2211)] = 71278, + [SMALL_STATE(2212)] = 71291, + [SMALL_STATE(2213)] = 71304, + [SMALL_STATE(2214)] = 71317, + [SMALL_STATE(2215)] = 71330, + [SMALL_STATE(2216)] = 71343, + [SMALL_STATE(2217)] = 71356, + [SMALL_STATE(2218)] = 71369, + [SMALL_STATE(2219)] = 71382, + [SMALL_STATE(2220)] = 71395, + [SMALL_STATE(2221)] = 71408, + [SMALL_STATE(2222)] = 71421, + [SMALL_STATE(2223)] = 71434, + [SMALL_STATE(2224)] = 71447, + [SMALL_STATE(2225)] = 71460, + [SMALL_STATE(2226)] = 71473, + [SMALL_STATE(2227)] = 71486, + [SMALL_STATE(2228)] = 71499, + [SMALL_STATE(2229)] = 71512, + [SMALL_STATE(2230)] = 71522, + [SMALL_STATE(2231)] = 71532, + [SMALL_STATE(2232)] = 71542, + [SMALL_STATE(2233)] = 71550, + [SMALL_STATE(2234)] = 71558, + [SMALL_STATE(2235)] = 71568, + [SMALL_STATE(2236)] = 71576, + [SMALL_STATE(2237)] = 71586, + [SMALL_STATE(2238)] = 71594, + [SMALL_STATE(2239)] = 71604, + [SMALL_STATE(2240)] = 71614, + [SMALL_STATE(2241)] = 71624, + [SMALL_STATE(2242)] = 71634, + [SMALL_STATE(2243)] = 71644, + [SMALL_STATE(2244)] = 71652, + [SMALL_STATE(2245)] = 71662, + [SMALL_STATE(2246)] = 71672, + [SMALL_STATE(2247)] = 71682, + [SMALL_STATE(2248)] = 71692, + [SMALL_STATE(2249)] = 71702, + [SMALL_STATE(2250)] = 71712, + [SMALL_STATE(2251)] = 71722, + [SMALL_STATE(2252)] = 71730, + [SMALL_STATE(2253)] = 71740, + [SMALL_STATE(2254)] = 71750, + [SMALL_STATE(2255)] = 71760, + [SMALL_STATE(2256)] = 71770, + [SMALL_STATE(2257)] = 71780, + [SMALL_STATE(2258)] = 71790, + [SMALL_STATE(2259)] = 71798, + [SMALL_STATE(2260)] = 71808, + [SMALL_STATE(2261)] = 71818, + [SMALL_STATE(2262)] = 71826, + [SMALL_STATE(2263)] = 71836, + [SMALL_STATE(2264)] = 71846, + [SMALL_STATE(2265)] = 71854, + [SMALL_STATE(2266)] = 71864, + [SMALL_STATE(2267)] = 71874, + [SMALL_STATE(2268)] = 71884, + [SMALL_STATE(2269)] = 71894, + [SMALL_STATE(2270)] = 71904, + [SMALL_STATE(2271)] = 71914, + [SMALL_STATE(2272)] = 71924, + [SMALL_STATE(2273)] = 71934, + [SMALL_STATE(2274)] = 71944, + [SMALL_STATE(2275)] = 71952, + [SMALL_STATE(2276)] = 71962, + [SMALL_STATE(2277)] = 71972, + [SMALL_STATE(2278)] = 71982, + [SMALL_STATE(2279)] = 71990, + [SMALL_STATE(2280)] = 71998, + [SMALL_STATE(2281)] = 72008, + [SMALL_STATE(2282)] = 72018, + [SMALL_STATE(2283)] = 72026, + [SMALL_STATE(2284)] = 72036, + [SMALL_STATE(2285)] = 72044, + [SMALL_STATE(2286)] = 72054, + [SMALL_STATE(2287)] = 72064, + [SMALL_STATE(2288)] = 72074, + [SMALL_STATE(2289)] = 72084, + [SMALL_STATE(2290)] = 72094, + [SMALL_STATE(2291)] = 72104, + [SMALL_STATE(2292)] = 72114, + [SMALL_STATE(2293)] = 72124, + [SMALL_STATE(2294)] = 72134, + [SMALL_STATE(2295)] = 72144, + [SMALL_STATE(2296)] = 72154, + [SMALL_STATE(2297)] = 72164, + [SMALL_STATE(2298)] = 72174, + [SMALL_STATE(2299)] = 72184, + [SMALL_STATE(2300)] = 72194, + [SMALL_STATE(2301)] = 72204, + [SMALL_STATE(2302)] = 72214, + [SMALL_STATE(2303)] = 72224, + [SMALL_STATE(2304)] = 72232, + [SMALL_STATE(2305)] = 72242, + [SMALL_STATE(2306)] = 72252, + [SMALL_STATE(2307)] = 72262, + [SMALL_STATE(2308)] = 72272, + [SMALL_STATE(2309)] = 72282, + [SMALL_STATE(2310)] = 72292, + [SMALL_STATE(2311)] = 72302, + [SMALL_STATE(2312)] = 72312, + [SMALL_STATE(2313)] = 72322, + [SMALL_STATE(2314)] = 72332, + [SMALL_STATE(2315)] = 72340, + [SMALL_STATE(2316)] = 72347, + [SMALL_STATE(2317)] = 72354, + [SMALL_STATE(2318)] = 72361, + [SMALL_STATE(2319)] = 72368, + [SMALL_STATE(2320)] = 72375, + [SMALL_STATE(2321)] = 72382, + [SMALL_STATE(2322)] = 72389, + [SMALL_STATE(2323)] = 72396, + [SMALL_STATE(2324)] = 72403, + [SMALL_STATE(2325)] = 72410, + [SMALL_STATE(2326)] = 72417, + [SMALL_STATE(2327)] = 72424, + [SMALL_STATE(2328)] = 72431, + [SMALL_STATE(2329)] = 72438, + [SMALL_STATE(2330)] = 72445, + [SMALL_STATE(2331)] = 72452, + [SMALL_STATE(2332)] = 72459, + [SMALL_STATE(2333)] = 72466, + [SMALL_STATE(2334)] = 72473, + [SMALL_STATE(2335)] = 72480, + [SMALL_STATE(2336)] = 72487, + [SMALL_STATE(2337)] = 72494, + [SMALL_STATE(2338)] = 72501, + [SMALL_STATE(2339)] = 72508, + [SMALL_STATE(2340)] = 72515, + [SMALL_STATE(2341)] = 72522, + [SMALL_STATE(2342)] = 72529, + [SMALL_STATE(2343)] = 72536, + [SMALL_STATE(2344)] = 72543, + [SMALL_STATE(2345)] = 72550, + [SMALL_STATE(2346)] = 72557, + [SMALL_STATE(2347)] = 72564, + [SMALL_STATE(2348)] = 72571, + [SMALL_STATE(2349)] = 72578, + [SMALL_STATE(2350)] = 72585, + [SMALL_STATE(2351)] = 72592, + [SMALL_STATE(2352)] = 72599, + [SMALL_STATE(2353)] = 72606, + [SMALL_STATE(2354)] = 72613, + [SMALL_STATE(2355)] = 72620, + [SMALL_STATE(2356)] = 72627, + [SMALL_STATE(2357)] = 72634, + [SMALL_STATE(2358)] = 72641, + [SMALL_STATE(2359)] = 72648, + [SMALL_STATE(2360)] = 72655, + [SMALL_STATE(2361)] = 72662, + [SMALL_STATE(2362)] = 72669, + [SMALL_STATE(2363)] = 72676, + [SMALL_STATE(2364)] = 72683, + [SMALL_STATE(2365)] = 72690, + [SMALL_STATE(2366)] = 72697, + [SMALL_STATE(2367)] = 72704, + [SMALL_STATE(2368)] = 72711, + [SMALL_STATE(2369)] = 72718, + [SMALL_STATE(2370)] = 72725, + [SMALL_STATE(2371)] = 72732, + [SMALL_STATE(2372)] = 72739, + [SMALL_STATE(2373)] = 72746, + [SMALL_STATE(2374)] = 72753, + [SMALL_STATE(2375)] = 72760, + [SMALL_STATE(2376)] = 72767, + [SMALL_STATE(2377)] = 72774, + [SMALL_STATE(2378)] = 72781, + [SMALL_STATE(2379)] = 72788, + [SMALL_STATE(2380)] = 72795, + [SMALL_STATE(2381)] = 72802, + [SMALL_STATE(2382)] = 72809, + [SMALL_STATE(2383)] = 72816, + [SMALL_STATE(2384)] = 72823, + [SMALL_STATE(2385)] = 72830, + [SMALL_STATE(2386)] = 72837, + [SMALL_STATE(2387)] = 72844, + [SMALL_STATE(2388)] = 72851, + [SMALL_STATE(2389)] = 72858, + [SMALL_STATE(2390)] = 72865, + [SMALL_STATE(2391)] = 72872, + [SMALL_STATE(2392)] = 72879, + [SMALL_STATE(2393)] = 72886, + [SMALL_STATE(2394)] = 72893, + [SMALL_STATE(2395)] = 72900, + [SMALL_STATE(2396)] = 72907, + [SMALL_STATE(2397)] = 72914, + [SMALL_STATE(2398)] = 72921, + [SMALL_STATE(2399)] = 72928, + [SMALL_STATE(2400)] = 72935, + [SMALL_STATE(2401)] = 72942, + [SMALL_STATE(2402)] = 72949, + [SMALL_STATE(2403)] = 72956, + [SMALL_STATE(2404)] = 72963, + [SMALL_STATE(2405)] = 72970, + [SMALL_STATE(2406)] = 72977, + [SMALL_STATE(2407)] = 72984, + [SMALL_STATE(2408)] = 72991, + [SMALL_STATE(2409)] = 72998, + [SMALL_STATE(2410)] = 73005, + [SMALL_STATE(2411)] = 73012, + [SMALL_STATE(2412)] = 73019, + [SMALL_STATE(2413)] = 73026, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -149233,235 +149628,235 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryExpr, 1), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), [49] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryExpr, 1), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryExpr, 2), [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryExpr, 2), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(59), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1992), - [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1932), - [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2034), - [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1122), - [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2075), - [393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(98), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(99), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(82), - [402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(3), - [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(949), - [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(268), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(7), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(35), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(858), - [422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2019), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2307), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(719), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(752), - [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(253), - [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2396), - [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2305), - [443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(108), - [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2311), - [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2313), - [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2314), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1293), - [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1122), - [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1293), - [464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1397), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2317), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2297), - [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2296), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2295), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(816), - [482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(815), - [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(815), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1960), - [491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(745), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(786), - [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2137), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(56), + [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1961), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1934), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2013), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1198), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2213), + [363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(99), + [366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(97), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(88), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(3), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(953), + [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(237), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(7), + [384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(30), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(860), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2026), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2312), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(716), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(752), + [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(220), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2408), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2313), + [413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(102), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2322), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2364), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2317), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1285), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1198), + [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1285), + [434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1370), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2363), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2309), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2308), + [446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2307), + [449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(818), + [452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(816), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(816), + [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(1979), + [461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2325), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(828), + [467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_Block_repeat1, 2), SHIFT_REPEAT(2142), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), [506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Block, 2), [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Block, 2), [510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Block, 3), @@ -149470,1542 +149865,1544 @@ static const TSParseActionEntry ts_parse_actions[] = { [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledTypeExpr, 2), [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledTypeExpr, 2), [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExpr, 2), - [522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 6), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 6), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_STRINGLITERALSINGLE, 3), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_STRINGLITERALSINGLE, 3), - [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 1), - [532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 1), - [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 1), - [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 1), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_STRINGLITERALSINGLE, 2), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_STRINGLITERALSINGLE, 2), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BreakLabel, 2), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BreakLabel, 2), - [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 9), - [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 9), - [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 8), - [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 8), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 7), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 7), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledStatement, 2), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledStatement, 2), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IDENTIFIER, 1), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IDENTIFIER, 1), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IDENTIFIER, 2), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IDENTIFIER, 2), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExpr, 1), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExpr, 1), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_STRINGLITERALSINGLE, 2), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_STRINGLITERALSINGLE, 2), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IDENTIFIER, 2), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IDENTIFIER, 2), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BreakLabel, 2), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BreakLabel, 2), + [534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 9), + [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 9), + [538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 8), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 8), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 7), + [548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 7), + [550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SwitchExpr, 6), + [552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchExpr, 6), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledStatement, 2), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledStatement, 2), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IDENTIFIER, 1), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IDENTIFIER, 1), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_STRINGLITERALSINGLE, 3), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_STRINGLITERALSINGLE, 3), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 1), + [568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 1), + [570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 1), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 1), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExpr, 1), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExpr, 1), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledStatement, 1), [628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledStatement, 1), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 3), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 2), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 3), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 2), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockLabel, 2), - [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 5), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 5), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 1, .production_id = 4), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 1, .production_id = 4), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 6), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 6), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 1, .production_id = 3), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 1, .production_id = 3), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 4), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 4), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 5), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 5), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 3), - [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 3), - [1234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 6), - [1236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 6), - [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 4, .production_id = 11), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 4, .production_id = 11), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 4, .production_id = 5), - [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 4, .production_id = 5), - [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 9), - [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 9), - [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 9), - [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 9), - [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 3), - [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 3), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 11), - [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 11), - [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2187), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(184), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(765), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LINESTRING, 1), - [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LINESTRING, 1), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), - [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), - [1285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(747), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForTypeExpr, 2), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForTypeExpr, 2), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), - [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(154), - [1301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfTypeExpr, 2), - [1303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfTypeExpr, 2), - [1305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldOrFnCall, 2, .production_id = 15), - [1307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FieldOrFnCall, 2, .production_id = 15), - [1309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileTypeExpr, 2), - [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileTypeExpr, 2), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDecl, 1), - [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerDecl, 1), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 2), - [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 2), - [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 27), - [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 27), - [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockLabel, 2), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 6), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 6), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 1, .production_id = 3), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 1, .production_id = 3), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 5), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 5), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 1, .production_id = 4), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 1, .production_id = 4), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), + [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), + [1226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2325), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 3), + [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 3), + [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 9), + [1235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 9), + [1237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 4, .production_id = 11), + [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 4, .production_id = 11), + [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 2, .production_id = 4), + [1243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 2, .production_id = 4), + [1245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__STRINGLITERAL, 1), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__STRINGLITERAL, 1), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 5), + [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 5), + [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 11), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 11), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 6), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 6), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 4, .production_id = 5), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 4, .production_id = 5), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 3), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 3), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), + [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2198), + [1276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(187), + [1279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(760), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixExpr, 3, .production_id = 9), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixExpr, 3, .production_id = 9), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(153), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [1295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldOrFnCall, 2, .production_id = 15), + [1297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FieldOrFnCall, 2, .production_id = 15), + [1299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LINESTRING, 2), + [1301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LINESTRING, 2), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForTypeExpr, 2), + [1305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForTypeExpr, 2), + [1307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileTypeExpr, 2), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileTypeExpr, 2), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfTypeExpr, 2), + [1313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfTypeExpr, 2), + [1315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6), + [1317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6), + [1319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 1), + [1321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 1), + [1323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 23), + [1325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 23), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4, .production_id = 16), + [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4, .production_id = 16), [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 5), [1333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 5), - [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 5), - [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 5), - [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 1), - [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 1), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4, .production_id = 16), - [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4, .production_id = 16), - [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 22), - [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 22), - [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 23), - [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 23), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 28), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 28), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 12), - [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 12), - [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 23), - [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 23), - [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorUnionExpr, 1), - [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorUnionExpr, 1), - [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 5), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 5), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 22), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 22), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__CurlySuffixExpr, 1), - [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__CurlySuffixExpr, 1), - [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 30), - [1391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 30), - [1393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 31), - [1395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 31), - [1397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 4), - [1399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 4), - [1401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4, .production_id = 17), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4, .production_id = 17), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__TypeExpr, 2), - [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__TypeExpr, 2), - [1409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 17), - [1411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 17), - [1413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 17), - [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 17), - [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 3), - [1419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 3), - [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 20), - [1423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 20), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5), - [1427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 2), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 2), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 19), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 19), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 26), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 26), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForTypeExpr, 3), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForTypeExpr, 3), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopTypeExpr, 1), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopTypeExpr, 1), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledTypeExpr, 1), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledTypeExpr, 1), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfTypeExpr, 3), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfTypeExpr, 3), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopTypeExpr, 2), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopTypeExpr, 2), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 7), - [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 7), - [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 3), - [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 3), - [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorUnionExpr, 3, .production_id = 14), - [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorUnionExpr, 3, .production_id = 14), - [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 7, .production_id = 28), - [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 7, .production_id = 28), - [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 4), - [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 4), - [1481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 17), - [1483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 17), - [1485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 2, .production_id = 7), - [1487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 2, .production_id = 7), - [1489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_INTEGER, 1), - [1491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_INTEGER, 1), - [1493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FLOAT, 1), - [1495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FLOAT, 1), - [1497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseTypeExprTail, 2), - [1499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseTypeExprTail, 2), - [1501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileTypeExpr, 3), - [1503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileTypeExpr, 3), - [1505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 5), - [1507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 5), - [1509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 3), - [1511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 3), - [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 2), - [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 2), - [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 3), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 3), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 8, .production_id = 32), - [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 8, .production_id = 32), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 3), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 3), - [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 6), - [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 6), - [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 4, .production_id = 12), - [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 4, .production_id = 12), - [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldOrFnCall, 3, .production_id = 11), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FieldOrFnCall, 3, .production_id = 11), - [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 4), - [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 4), - [1545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 3, .production_id = 12), - [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 3, .production_id = 12), - [1549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_GroupedExpr, 3), - [1551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_GroupedExpr, 3), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDecl, 2), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerDecl, 2), - [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 4), - [1559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 4), - [1561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseTypeExprTail, 3), - [1563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseTypeExprTail, 3), - [1565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 3), - [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 3), - [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_CHAR_LITERAL, 3), - [1571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_CHAR_LITERAL, 3), - [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForStatement, 2), - [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForStatement, 2), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfStatement, 2), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfStatement, 2), - [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileStatement, 2), - [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileStatement, 2), - [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForExpr, 2), - [1589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForExpr, 2), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileExpr, 2), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileExpr, 2), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfExpr, 2), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfExpr, 2), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForStatement, 3), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForStatement, 3), - [1659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileStatement, 3), - [1661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileStatement, 3), - [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfStatement, 3), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfStatement, 3), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 5, .production_id = 6), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 5, .production_id = 6), - [1671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExprStatement, 2), - [1673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExprStatement, 2), - [1675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 8, .production_id = 6), - [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 8, .production_id = 6), - [1679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseExprTail, 2), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseExprTail, 2), - [1683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseStatementTail, 2), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseStatementTail, 2), - [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BinaryExpr, 3, .production_id = 13), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BinaryExpr, 3, .production_id = 13), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseExprTail, 3), - [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseExprTail, 3), - [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_UnaryExpr, 2, .production_id = 8), - [1697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_UnaryExpr, 2, .production_id = 8), - [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 7, .production_id = 6), - [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 7, .production_id = 6), - [1703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 9, .production_id = 6), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 9, .production_id = 6), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopStatement, 1), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopStatement, 1), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseStatementTail, 3), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseStatementTail, 3), - [1715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 3), - [1717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 3), - [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 4, .production_id = 6), - [1721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 4, .production_id = 6), - [1723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 3, .production_id = 6), - [1725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 3, .production_id = 6), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryExpr, 3), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryExpr, 3), - [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 6, .production_id = 6), - [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 6, .production_id = 6), - [1735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopStatement, 2), - [1737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopStatement, 2), - [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExprStatement, 1), - [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExprStatement, 1), - [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 2), - [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 2), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Payload, 3, .production_id = 21), - [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Payload, 3, .production_id = 21), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2165), - [1766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(326), - [1769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1042), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 4), - [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 4), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2190), - [1789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(284), - [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1197), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(975), + [1335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 5), + [1337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 5), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 4), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 4), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 30), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 30), + [1347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 4), + [1349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 4), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 12), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 12), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 3), + [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 3), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseTypeExprTail, 3), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseTypeExprTail, 3), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 31), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 31), + [1367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 22), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 5, .production_id = 22), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForTypeExpr, 3), + [1373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForTypeExpr, 3), + [1375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileTypeExpr, 3), + [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileTypeExpr, 3), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 5), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 5), + [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDecl, 2), + [1385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerDecl, 2), + [1387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 7, .production_id = 17), + [1389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 7, .production_id = 17), + [1391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopTypeExpr, 2), + [1393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopTypeExpr, 2), + [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDecl, 1), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerDecl, 1), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 7, .production_id = 28), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 7, .production_id = 28), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4), + [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_CHAR_LITERAL, 3), + [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_CHAR_LITERAL, 3), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 26), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 26), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 4), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 4), + [1419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 4, .production_id = 17), + [1421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 4, .production_id = 17), + [1423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_GroupedExpr, 3), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_GroupedExpr, 3), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 3, .production_id = 12), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 3, .production_id = 12), + [1431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 3), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 3), + [1435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 6), + [1437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 6), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 17), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 17), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 27), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 27), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 20), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 20), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 6, .production_id = 17), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 6, .production_id = 17), + [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 5, .production_id = 19), + [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 5, .production_id = 19), + [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 2), + [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 2), + [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryTypeExpr, 2, .production_id = 7), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryTypeExpr, 2, .production_id = 7), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopTypeExpr, 1), + [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopTypeExpr, 1), + [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LabeledTypeExpr, 1), + [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LabeledTypeExpr, 1), + [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 8, .production_id = 32), + [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 8, .production_id = 32), + [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfTypeExpr, 3), + [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfTypeExpr, 3), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorUnionExpr, 3, .production_id = 14), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorUnionExpr, 3, .production_id = 14), + [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 2), + [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 2), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 3), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 3), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_InitList, 5), + [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_InitList, 5), + [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclAuto, 4), + [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclAuto, 4), + [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 22), + [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 22), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseTypeExprTail, 2), + [1515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseTypeExprTail, 2), + [1517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_INTEGER, 1), + [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_INTEGER, 1), + [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 28), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 28), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FLOAT, 1), + [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FLOAT, 1), + [1529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorUnionExpr, 1), + [1531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorUnionExpr, 1), + [1533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 2), + [1535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 2), + [1537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 3), + [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 3), + [1541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__CurlySuffixExpr, 1), + [1543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__CurlySuffixExpr, 1), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnCallArguments, 3), + [1549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnCallArguments, 3), + [1551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldOrFnCall, 3, .production_id = 11), + [1553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FieldOrFnCall, 3, .production_id = 11), + [1555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__TypeExpr, 2), + [1557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__TypeExpr, 2), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 23), + [1561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 6, .production_id = 23), + [1563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FnProto, 3), + [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_FnProto, 3), + [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SuffixOp, 7), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SuffixOp, 7), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ErrorSetDecl, 4, .production_id = 12), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ErrorSetDecl, 4, .production_id = 12), + [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfStatement, 2), + [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfStatement, 2), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [1581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileStatement, 2), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileStatement, 2), + [1585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForStatement, 2), + [1587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForStatement, 2), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileExpr, 2), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileExpr, 2), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [1623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfExpr, 2), + [1625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfExpr, 2), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForExpr, 2), + [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForExpr, 2), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopStatement, 2), + [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopStatement, 2), + [1661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExprStatement, 1), + [1663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExprStatement, 1), + [1665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 9, .production_id = 6), + [1667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 9, .production_id = 6), + [1669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 2), + [1671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 2), + [1673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 6, .production_id = 6), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 6, .production_id = 6), + [1677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BinaryExpr, 3, .production_id = 13), + [1679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BinaryExpr, 3, .production_id = 13), + [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 8, .production_id = 6), + [1683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 8, .production_id = 6), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 4, .production_id = 6), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 4, .production_id = 6), + [1689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseExprTail, 2), + [1691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseExprTail, 2), + [1693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseStatementTail, 3), + [1695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseStatementTail, 3), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__PrimaryExpr, 3), + [1699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__PrimaryExpr, 3), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 7, .production_id = 6), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 7, .production_id = 6), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_UnaryExpr, 2, .production_id = 8), + [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_UnaryExpr, 2, .production_id = 8), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BlockExprStatement, 2), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BlockExprStatement, 2), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Statement, 3), + [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Statement, 3), + [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfStatement, 3), + [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfStatement, 3), + [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileStatement, 3), + [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileStatement, 3), + [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForStatement, 3), + [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForStatement, 3), + [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 5, .production_id = 6), + [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 5, .production_id = 6), + [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_VarDecl, 3, .production_id = 6), + [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_VarDecl, 3, .production_id = 6), + [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopStatement, 1), + [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopStatement, 1), + [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseStatementTail, 2), + [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseStatementTail, 2), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ElseExprTail, 3), + [1747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ElseExprTail, 3), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_Payload, 3, .production_id = 21), + [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_Payload, 3, .production_id = 21), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 4), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 4), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2098), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(309), + [1777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1106), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2333), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2201), + [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(254), + [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1117), [1800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AssignExpr, 1), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__CurlySuffixExpr, 2), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__CurlySuffixExpr, 2), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(143), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 4), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 4), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfPrefix, 4), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfPrefix, 4), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 6), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 6), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForExpr, 3), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForExpr, 3), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileExpr, 3), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileExpr, 3), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfExpr, 3), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfExpr, 3), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 5), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 5), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(1011), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopExpr, 2), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopExpr, 2), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopExpr, 1), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopExpr, 1), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 5), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 5), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitwiseOp, 1), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitwiseOp, 1), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(132), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrPayload, 3, .production_id = 21), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrPayload, 3, .production_id = 21), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrPayload, 4, .production_id = 33), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrPayload, 4, .production_id = 33), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_MultiplyOp, 1), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_MultiplyOp, 1), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixOp, 1), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixOp, 1), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileContinueExpr, 4), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileContinueExpr, 4), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 4, .production_id = 33), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 4, .production_id = 33), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 3, .production_id = 21), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 3, .production_id = 21), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForPrefix, 5), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForPrefix, 5), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 5, .production_id = 34), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 5, .production_id = 34), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 6), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 6), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 6, .production_id = 35), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 6, .production_id = 35), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_CompareOp, 1), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_CompareOp, 1), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitShiftOp, 1), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitShiftOp, 1), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AdditionOp, 1), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AdditionOp, 1), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitwiseOp, 2), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitwiseOp, 2), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfPrefix, 5), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfPrefix, 5), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AssignOp, 1), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AssignOp, 1), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 8, .production_id = 10), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 8, .production_id = 10), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 7, .production_id = 10), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 7, .production_id = 10), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 1), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 1), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 10), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 10), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 1), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 1), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 2), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 2), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 7, .production_id = 2), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 7, .production_id = 2), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 4, .production_id = 2), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 4, .production_id = 2), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 3, .production_id = 1), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 3, .production_id = 1), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 1), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 1), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixTypeOp, 2), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixTypeOp, 2), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixTypeOp, 1), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixTypeOp, 1), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), - [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), SHIFT_REPEAT(1272), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), SHIFT_REPEAT(2339), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), - [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(2375), - [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(108), - [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1293), - [2042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1293), - [2045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1397), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), SHIFT_REPEAT(1274), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), - [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), SHIFT_REPEAT(2309), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [2066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ByteAlign, 4), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ByteAlign, 4), - [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 5), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 5), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 2), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 2), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 4), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 4), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SliceTypeStart, 4), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SliceTypeStart, 4), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 4), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 4), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 4), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 4), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 3), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 3), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SliceTypeStart, 2), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SliceTypeStart, 2), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 5), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 5), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LinkSection, 4), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LinkSection, 4), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 3), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 3), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 8), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 8), - [2128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2142), - [2131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(341), - [2134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1363), - [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(1329), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2355), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopExpr, 1), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopExpr, 1), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 5), + [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 5), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 5), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 5), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfPrefix, 4), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfPrefix, 4), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileExpr, 3), + [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileExpr, 3), + [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 4), + [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 4), + [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForExpr, 3), + [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForExpr, 3), + [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfExpr, 3), + [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfExpr, 3), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LoopExpr, 2), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LoopExpr, 2), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitwiseOp, 1), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitwiseOp, 1), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__CurlySuffixExpr, 2), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__CurlySuffixExpr, 2), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmExpr, 6), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AsmExpr, 6), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(135), + [1862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrPayload, 4, .production_id = 33), + [1864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrPayload, 4, .production_id = 33), + [1866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrPayload, 3, .production_id = 21), + [1868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrPayload, 3, .production_id = 21), + [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(136), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ForPrefix, 5), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ForPrefix, 5), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_IfPrefix, 5), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_IfPrefix, 5), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_CompareOp, 1), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_CompareOp, 1), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhileContinueExpr, 4), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhileContinueExpr, 4), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitShiftOp, 1), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitShiftOp, 1), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 4, .production_id = 33), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 4, .production_id = 33), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AssignOp, 1), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AssignOp, 1), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_AdditionOp, 1), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AdditionOp, 1), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 3, .production_id = 21), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 3, .production_id = 21), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_BitwiseOp, 2), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BitwiseOp, 2), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixOp, 1), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixOp, 1), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 5, .production_id = 34), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 5, .production_id = 34), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrIndexPayload, 6, .production_id = 35), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrIndexPayload, 6, .production_id = 35), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_WhilePrefix, 6), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_WhilePrefix, 6), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_MultiplyOp, 1), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_MultiplyOp, 1), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 2), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 2), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 10), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 10), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 1), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 1), + [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 4, .production_id = 2), + [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 4, .production_id = 2), + [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 1), + [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 1), + [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 8, .production_id = 10), + [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 8, .production_id = 10), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 3, .production_id = 1), + [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 3, .production_id = 1), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 7, .production_id = 10), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 7, .production_id = 10), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 7, .production_id = 2), + [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 7, .production_id = 2), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 1), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 1), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), SHIFT_REPEAT(1273), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat1, 2), SHIFT_REPEAT(2361), + [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixTypeOp, 2), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixTypeOp, 2), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PrefixTypeOp, 1), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PrefixTypeOp, 1), + [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ByteAlign, 4), + [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ByteAlign, 4), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), + [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), SHIFT_REPEAT(1281), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), + [2052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 2), SHIFT_REPEAT(2375), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), + [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(2327), + [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(102), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1285), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1285), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__TypeExpr_repeat1, 2), SHIFT_REPEAT(1370), + [2074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 5), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 5), + [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 8), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 8), + [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 3), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 3), + [2086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 2), + [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 2), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_LinkSection, 4), + [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_LinkSection, 4), + [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 5), + [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 5), + [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 4), + [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_PrefixTypeOp_repeat2, 4), + [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SliceTypeStart, 4), + [2108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SliceTypeStart, 4), + [2110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 4), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 4), + [2114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_PtrTypeStart, 3), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_PtrTypeStart, 3), + [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ParamDeclList, 4), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDeclList, 4), + [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_SliceTypeStart, 2), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SliceTypeStart, 2), + [2126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2331), + [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2154), + [2132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(327), + [2135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1372), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_CallConv, 4), [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_CallConv, 4), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(123), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ArrayTypeStart, 5), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ArrayTypeStart, 5), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ArrayTypeStart, 3), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ArrayTypeStart, 3), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AssignExpr, 3), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_InitList_repeat2, 2), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(127), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ArrayTypeStart, 5), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ArrayTypeStart, 5), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ArrayTypeStart, 3), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ArrayTypeStart, 3), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AssignExpr, 3), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchItem, 1), + [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchItem, 1), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchItem, 3), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldInit, 4, .production_id = 2), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_InitList_repeat2, 2), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchItem, 3), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_FieldInit, 4, .production_id = 2), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2209), - [2454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(309), - [2457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1702), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(1646), - [2465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2205), - [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(170), - [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1823), - [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(127), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_LINESTRING_repeat1, 2), SHIFT_REPEAT(1668), - [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(122), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), - [2489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1922), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2073), - [2495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1944), - [2498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1879), - [2501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1868), - [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2232), - [2507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2084), - [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(349), - [2513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2005), - [2516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2100), - [2519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1878), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1869), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2259), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 3, .production_id = 10), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 3, .production_id = 10), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [2447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2174), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(285), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1693), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2316), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__STRINGLITERAL_repeat1, 2), SHIFT_REPEAT(2402), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(2186), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(336), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 2), SHIFT_REPEAT(1781), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(149), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SuffixExpr_repeat1, 1), SHIFT_REPEAT(133), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1927), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2072), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1949), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1886), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1871), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2244), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2097), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(340), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2004), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2102), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1885), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(1878), + [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 2), SHIFT_REPEAT(2310), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), + [2568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 1), + [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 1), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 2, .production_id = 2), + [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 2, .production_id = 2), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 1, .production_id = 1), [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 1, .production_id = 1), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 1), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 1), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 2, .production_id = 2), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 2, .production_id = 2), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 4, .production_id = 1), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 4, .production_id = 1), - [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 10), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 10), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 2), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 2), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 2), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 2), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 1), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 1), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelComptime, 3), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelComptime, 3), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 3, .production_id = 10), + [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 3, .production_id = 10), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 6, .production_id = 10), + [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 6, .production_id = 10), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 4, .production_id = 1), + [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 4, .production_id = 1), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerField, 5, .production_id = 2), + [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ContainerField, 5, .production_id = 2), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 2), + [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 2), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__ContainerMembers, 1), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [2646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 1), + [2648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclarations, 3), + [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclarations, 3), + [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__ContainerMembers, 2), + [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 3), + [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 3), + [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TestDecl, 2), + [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TestDecl, 2), [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TestDecl, 3), [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TestDecl, 3), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclarations, 2), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclarations, 2), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TestDecl, 4), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TestDecl, 4), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 3), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 3), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TestDecl, 2), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TestDecl, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelComptime, 2), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelComptime, 2), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclarations, 3), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclarations, 3), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 4), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 4), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelComptime, 3), + [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelComptime, 3), + [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelComptime, 2), + [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelComptime, 2), + [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ContainerDeclarations, 2), + [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__ContainerDeclarations, 2), + [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TopLevelDecl, 4), + [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TopLevelDecl, 4), + [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_TestDecl, 4), + [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_TestDecl, 4), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [2764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamType, 1), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 1), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamType, 1), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), [2772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 3), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 4), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), SHIFT_REPEAT(1997), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), SHIFT_REPEAT(1997), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [2926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 2), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 3), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [2974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 2), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 3), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 1), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 4), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 4), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 1), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_InitList_repeat2, 2), SHIFT_REPEAT(302), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmOutput_repeat1, 2), SHIFT_REPEAT(2304), - [3066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmOutput_repeat1, 2), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmInput_repeat1, 2), SHIFT_REPEAT(2244), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmInput_repeat1, 2), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [3157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmClobbers_repeat1, 2), SHIFT_REPEAT(1981), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmClobbers_repeat1, 2), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ParamDeclList_repeat1, 2), SHIFT_REPEAT(396), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ParamDeclList_repeat1, 2), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SwitchCase_repeat1, 2), SHIFT_REPEAT(148), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SwitchCase_repeat1, 2), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 1), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_InitList_repeat1, 2), SHIFT_REPEAT(2273), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_InitList_repeat1, 2), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutputItem, 8, .production_id = 21), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInputItem, 7, .production_id = 21), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutputItem, 7, .production_id = 36), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 1), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 2), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [3355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SwitchExpr_repeat1, 2), SHIFT_REPEAT(94), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SwitchExpr_repeat1, 2), - [3360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 24), SHIFT_REPEAT(2064), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 24), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 4, .production_id = 25), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 3, .production_id = 12), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 7), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 4), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchProng, 3), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchProng, 4), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 2), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 1), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 5, .production_id = 29), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 3), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 3, .production_id = 18), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 5), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 7), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [3579] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 5), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BUILTINIDENTIFIER, 2), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 4), + [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 1), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), SHIFT_REPEAT(1960), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_STRINGLITERALSINGLE_repeat1, 2), SHIFT_REPEAT(1960), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [2934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 3), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [2938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 2), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 3), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 4), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 4), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 1), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 1), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [3020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 2), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmOutput_repeat1, 2), SHIFT_REPEAT(2275), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmOutput_repeat1, 2), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_InitList_repeat2, 2), SHIFT_REPEAT(302), + [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmInput_repeat1, 2), SHIFT_REPEAT(2300), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmInput_repeat1, 2), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 1), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchCase, 1), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutputItem, 8, .production_id = 21), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInputItem, 7, .production_id = 21), + [3187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SwitchCase_repeat1, 2), SHIFT_REPEAT(145), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SwitchCase_repeat1, 2), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutputItem, 7, .production_id = 36), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmClobbers, 2), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 24), SHIFT_REPEAT(2071), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 24), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_InitList_repeat1, 2), SHIFT_REPEAT(2231), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_InitList_repeat1, 2), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_AsmClobbers_repeat1, 2), SHIFT_REPEAT(1959), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_AsmClobbers_repeat1, 2), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [3313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_SwitchExpr_repeat1, 2), SHIFT_REPEAT(95), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_SwitchExpr_repeat1, 2), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ParamDeclList_repeat1, 2), SHIFT_REPEAT(396), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ParamDeclList_repeat1, 2), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 3), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 3, .production_id = 18), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchProng, 3), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 4), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 5, .production_id = 29), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 2, .production_id = 7), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_SwitchProng, 4), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 4, .production_id = 25), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 1), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ParamDecl, 2), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ErrorSetDecl_repeat1, 3, .production_id = 12), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ContainerDeclType, 7), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3583] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_BUILTINIDENTIFIER, 2), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmOutput, 5), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_AsmInput, 5), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), }; #ifdef __cplusplus diff --git a/vendor/tree-sitter-zig/src/tree_sitter/parser.h b/vendor/tree-sitter-zig/src/tree_sitter/parser.h index cbbc7b4ee..2b14ac104 100644 --- a/vendor/tree-sitter-zig/src/tree_sitter/parser.h +++ b/vendor/tree-sitter-zig/src/tree_sitter/parser.h @@ -123,6 +123,7 @@ struct TSLanguage { unsigned (*serialize)(void *, char *); void (*deserialize)(void *, const char *, unsigned); } external_scanner; + const TSStateId *primary_state_ids; }; /*